Comment imprimer continuellement dans la même ligne dans Python
print("Hello world!", end = ' ')
print("It's me.")
Output:
Hello world! It's me.
Smoggy Sandpiper
print("Hello world!", end = ' ')
print("It's me.")
Output:
Hello world! It's me.