In Python, if you executed name = 'Lizz' , what would be the output of print(name[0:2]) ?
Consider the string A='1934567' , what is the result of the following operation A[1::2] ?
In Python, what is the result of the following operation: '1' '2' ?
What is the result of the following: 'hello'.upper() ?
Consider the string Name="ABCDE" , what is the result of the following operation Name.find("B") ?
What is the result of the following : str(1) str(1) ?
What is the result of the following: "123".replace("12", "ab") ?