Python basics quiz
What is python?
Please select 2 correct answers
Correct!
Wrong!
What will be the output of the code for x in range(0.5, 5.5, 0.5): print(x)
Correct!
Wrong!
This is explaination of the answer
What is the output of the following code? def calculate (num1, num2=4): res = num1 * num2 print(res) calculate(5, 6)
Correct!
Wrong!
This is the explaination of the answer