I'm new to Python and I cannot figure out how to use if statements and I'm growing desperate
Could someone with some more experience in the language help me out?
Here's the code I'm using
Code:
# mOS Beta v0.1
help1 = HELP
dir1 = DIR
input("Enter Command: ")
# HELP Command
if(help1)
print("Common Commands:\n")
print("HELP - list common commands")
print("DIR - open directory navigator")
# Directory Manager
elif(dir1)
input("Specify Directory: ")
in input("Select file or folder: ")
in input("Select file or folder: ")
in print("Opening file...")
else print("Improper Command; Type [HELP] for a list of common commands")
input()