Como imprimir continuamente na mesma linha em 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.