#f string can be used insted of + in print statments age = 33 #instead of: print("I am " + str(age)) #output: I am 33 #do this print(f"I am {age}") #output: I am 33