Computer Science
What will following code print?
str1 = '''Hell
o'''
str2 = '''Hell\
o'''
print(len(str1) > len(str2))
Related Questions
How many string types does Python support? How are they different from one another?
What are Immutable and Mutable types in Python? List immutable and mutable types of Python.
The complex numbers have two parts : real and imaginary. In which data type are real and imaginary parts represented ?
What are three internal key-attributes of a value-variable in Python ? Explain with example.