Answers for "how to get a new line in print python"

15

print no new line python

print('*', end='')
print('*', end='')
print('*', end='')

# output:
# ***
Posted by: Guest on April-25-2020
1

new line in python

print("line onenline two") # the n in python is used to create new lines in a string
Posted by: Guest on January-10-2021

Code answers related to "how to get a new line in print python"

Python Answers by Framework

Browse Popular Code Answers by Language