Q. Which of the following is not a core data type in Python programming?
β
Correct Answer: (C)
Class
Dear candidates you will find MCQ questions of Python here. Learn these questions and prepare yourself for coming examinations and interviews. You can check the right answer of any question by clicking on any option or by clicking view answer button.
Share your questions by clicking Add Question
print("%.2f"%x)
len(["hello",2, 4, 6])
x = 'abcd'
for i in x:
print(i.upper())
for i in [1, 2, 3, 4][::-1]:
print (i)
>>>"a"+"bc"
f = foo() format(f)