-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex13.py
More file actions
25 lines (17 loc) · 709 Bytes
/
ex13.py
File metadata and controls
25 lines (17 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#-- coding=utf-8 --
from sys import argv
script, first, second, third = argv
'''print "The script is called:", script
print "Your first variable is:", first
print "Your second variable is:", second
print "Your third variable is:", third'''
print "The script is called:", raw_input('script:')
print "Your first variable is:", raw_input('first')
print "Your second variable is:", raw_input('second')
print "Your third variable is:", raw_input('third')
'''aa, bb, cc, dd, ee = argv
print "The script is called aa:", aa
print "Your first variable is bb:", bb
print "Your second variable is cc:", cc
print "Your third variable is dd:", dd
print "Your third variable is ee:", ee'''