Tuesday, 7 January 2020

Python Clear the Interpreter Console

import os
clear = lambda: os.system('cls')
clear()


No comments:

Create modal using HTML and CSS

<body>   <dialog id = "modal">      <div>        <h1>Title</h1>        <p>Sample Text</p...