Computer Science
What is the result of the following expression?
print("""
1
2
3
""")
Python
Python String Manipulation
17 Likes
Answer
1
2
3
Answered By
9 Likes
Related Questions
Can you specify an out of bound index when accessing a single character from a string? Why?
Can you add two strings? What effect does ' + ' have on strings?
What is the result of the following expression?
text = "Test.\nNext line." print (text)
What is the result of the following expression?
print ('One', ' Two ' * 2) print ('One ' + 'Two' * 2) print (len('10123456789'))