#to print without changing line add, end="" after the string print("Hello ",end="") print("World!") #next print will be in the next line because we didn't add end="" >>>Hello World!