Merge pull request #25 from cclauss/patch-1

raw_input() was removed from Python on 1/1/2020
This commit is contained in:
Sameer Bhatt (debugger) 2020-09-14 14:39:56 +05:30 committed by GitHub
commit 7d165bc939
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,11 @@ import platform
import os
import time
try:
raw_input
except NameError:
raw_input = input
def banner():
if platform.system().lower()=="windows":
os.system("cls")