Forum Discussion

RobertSmith's avatar
RobertSmith
Qrew Member
8 years ago

Syntax error in Python when referencing variables

my_name  = 'Robert' my_age = 35 my_height = 74 my_weight = 180 my_eyes = 'blue' print(f"Let's talk about {my_name}.") print(f "He's {my_height} inches tall.") print(f "He's {my_weight} poun...