18 lines
505 B
Python
18 lines
505 B
Python
myName = "Ganome"
|
|
myAge = 35
|
|
myHeight = 72
|
|
myWeight = 180
|
|
myEyes = "Blue"
|
|
myTeeth = "white"
|
|
myHair = "Brown"
|
|
|
|
print(f"Let's talk about {myName}.")
|
|
print(f"He's {myHeight} inches tall.")
|
|
print(f"He's {myWeight} pounds heavy.")
|
|
print(f"Actually that's not too heavy.")
|
|
print(f"Hes got {myEyes} eyes and {myHair} hair.")
|
|
print(f"His teeth are usuallyy {myTeeth} depending on the coffee.")
|
|
|
|
#tricky line
|
|
total = myAge + myHeight + myWeight
|
|
print(f"If i add {myAge}, {myHeight}, and {myWeight} I get {total}.") |