Computer Science, asked by kripa1048, 8 months ago

What will following code print? str1= ' ' ' Hell o' ' ' str2=' ' ' Hell/ o' ' ' print(len(str1)>len(str2))

Answers

Answered by Anonymous
22

str1 = ’’'Hell\r

o '''

str2 = ''' Hell\

o'''

print(len(str1) > len(str2))

# Output

False

Similar questions