print("{} is chasing a {}".format("cat", "dog")) print("{2} {0} {1} {0}".format(3, 4, 5)) # OPC other peoples' code print(f"{5}*{3} = {5*3}") print("5*3 =", "15") print(r"C:\Windoze\sux\bill\gates") print("""Here are the rules of this game""")