Answers for ".clear python"

10

how to clear the console python

def clear(): 
  
    # for windows 
    if name == 'nt': 
        _ = system('cls') 
  
    # for mac and linux(here, os.name is 'posix') 
    else: 
        _ = system('clear')
Posted by: Guest on March-07-2020
1

How do you clear a list

lst = [1,2,3,4,5,6,7,8,9,10]
lst.clear()
Posted by: Guest on September-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language