Files
Python-HV/Pass1/Inputs.py
2018-02-22 14:42:33 +01:00

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)