Command Line Args Handler

python
EmaMaker 2019-01-01 19:22:37 +01:00 committed by GitHub
parent 89227c0865
commit 63ba8fdfc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
'''
GETS ARGUMENTS FROM COMMAND LINE WHEN PROGRAM IS STARTED FROM COMMAND LINE
'''
import sys
for x in sys.argv:
print("Argument: " + str(x))