""" Ex 1.1; compute 1 + 1, assign the result to a variable, print the variable """ result = 1 + 1 #Slightly nicer output than required: print(f'1 + 1 = {result}') """ Terminal> python 1plus1.py 1 + 1 = 2 """