I am trying to make a simple average calculation but trying my best to run on CMD. So far this is what I've came out
import sys
myList = [a,b,c]
myList[0] = int(sys.argv[1])
myList[1] = int (sys.argv[2])
myList[2] = int(sys.argv[3])
print 'Average:' + sum(myList) / len(myList)
my question is; how do set a variable in a list to give them a value?
EDIT:
import sys
myList = [a,b,c]
a = int(sys.argv[1])
b = int (sys.argv[2])
c = int(sys.argv[3])
print 'Average:' + sum(myList) / len(myList)
whats wrong with this code?
EDIT:
I want to allow users to run this program with three input arguments by passing three values to the program: a, b and c.
Edit:
this is my final edit, anyone can help me with this
import sys
a = float(sys.argv[1])
b = float(sys.argv[2])
c = float(sys.argv[3])
if a == str or b == str or c == str:
print 'Your input is invalid'
else:
print 'Average: %.2f ' % ((a + b + c) / 3)
Are you looking for something like:
[float(arg) for arg in sys.argv[1:]]
is a list-comprehension (one-linerfor
that returns a list). It parse args intofloat
(float(arg)
) and loop from the second element ofsys.argv
(first is name of you script file).Float type is forced because Python trunk results of division if both numerator and denominator are
int
.Btw, PEP8 required snake_case (
my_list
, notmyList
) and string concat should never be done with+
, but withformat
orjoin()
.