What is the output of the following code?
chr(ord('A'))
What is the output of "hello World".split()
What will be the output of the following Python code snippet?
print('cd'.partition('cd'))
What will be the output of the following Python code?
>>>example = "snow world"
>>>print("%s" % example[4:7])
What will be the output of the following Python code?
What will be the output of the following Python code?
>>>names = ['Amir', 'Bear', 'Charlton', 'Daman']
>>>print(names[-1][-1])
What is output of given program?
What is the output of the following Python code?
print('xyyxyyxyxyxxy'.replace('xy', '12', 100))