F-string

 list = [1,2,3,4,5]
 for i in list:
     print(f"{i} Mississippi")
     time.sleep(1)
 print("Ready or not, here I come!")