attempting to start a python program properly

cleanup
6455 2017-08-14 13:29:10 +00:00
parent 28ca120c9a
commit 3ce8607678
1 changed files with 9 additions and 5 deletions

View File

@ -55,8 +55,12 @@ def handlechoice():
print("sorry, I didn't get that, type either y or n:")
handlechoice()
if os.path.exists('/home/m455/code/projects/nicethings/list.txt') == True:
handleargs()
else:
print("list.txt doesn't exist\ndo you want me to make a list.txt file right now? (y/n)")
handlechoice()
def main():
if os.path.exists('/home/m455/code/projects/nicethings/list.txt') == True:
handleargs()
else:
print("list.txt doesn't exist\ndo you want me to make a list.txt file right now? (y/n)")
handlechoice()
if __name__ == '__main__':
main()