LPTHW Day 2

18 Apr 2019

Today’s Progress

# end=' ' puts a space after the " ? " AND doesn't go to a newline.
print("How old are you?", end=' ')

# pass age to repr() to get python type
age = input()
print(">> age=", repr(age))

#this line unpack...Take whatever is in argv, unpack it, and assign it to all of these variables on the left in order.
script, first, second, third = argv

Link to work: exercises 11-15