21 lines
530 B
Python
Raw Normal View History

2024-08-19 17:47:45 -06:00
#!/usr/bin/env python3
2021-04-19 17:06:12 +00:00
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
2024-08-19 17:47:45 -06:00
print(f"If i add {myAge}, {myHeight}, and {myWeight} I get {total}.")