In python _______ datatype can be used instead of arrays.
What are the main uses of Python?
What is the output of the given code?
string="Abekus"
print(string)
string[2]="p"
print(string)
Which of the following functions does not necessarily accept only iterables as arguments?
What will be the output of the following Python code?
Suppose d = {“john”:40, “peter”:45}. To obtain the number of entries in dictionary which command do we use?
What will be the output of the following code?
print("Hello {name1} and {name2}".format('foo', 'bin'))
x=3.3456789
'%f | %e | %g' %(x, x, x)
Which of the following statements is true about the Python function f = open('filename.txt', 'r+')
?