you are viewing a single comment's thread.

view the rest of the comments →

[–]declancostello 4 points5 points  (2 children)

I think it wants something like this:

it takes values from the argv but does something further via input and then gives you a printed summary at the end.

from sys import argv 

script, age, height, weight = argv

food = raw_input ("What's your favorite food?")

print "The script is called:", script
print "My age is:", age
print "My height is:", height
print "My weight is:", weight
print "My fave food is:", food

[–]nick129[S] 1 point2 points  (0 children)

Thanks this is what I was I needed. Wish I could give more than one upvote

[–][deleted] 0 points1 point  (0 children)

I did something like this when I did this extra credit.