programming-examples/python/String/Python program to remove a newline.py
2019-11-15 12:59:38 +01:00

3 lines
65 B
Python

str1='Python Exercises\n'
print(str1)
print(str1.rstrip())