# This section illustrates simple print statement print("Hello, world") print(3 + 7) print(2 ** 3) # The use of sep arguments print("abc", 8, 3 + 7, "xyz") print("abc", 8, 3 + 7, "xyz", sep="--") print("abc", 8, 3 + 7, "xyz", sep="") print("Bye") print("a") print("b") print("c") " The use of " # The use of end print("a", end="@") print("b", end="xx") print("c") # Pause the program input("Press Enter to quit")