3 lines
147 B
Python
Executable File
3 lines
147 B
Python
Executable File
#simple code to accept values from command line. Easiest to test in IDLE
|
|
input_var = input("Enter something: ")
|
|
print ("you entered " + input_var) |