programming-examples/python/String/Python program to remove a newline.py

3 lines
65 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
str1='Python Exercises\n'
print(str1)
print(str1.rstrip())