Mar 24, 2021
Q1. What is python?

Python is an interpreted,object-oriented,high-level programming language.


Install Python

Mar 24, 2021
Q2. Select the integer literal.



Mar 24, 2021
Q3. What is the output of this code?
>> int("30"+"40")



Mar 24, 2021
Q4. do you insert COMMENTS in Python code?



Mar 24, 2021
Q5. The input() function takes user's input as a



Mar 24, 2021
Q6. How many numbers will be printed?
i = 10
while i>=0:
    print(i)
     i=i-1



Mar 24, 2021
Q7. Which of the following is placed after the if condition?



Mar 24, 2021
Q8. What is the output of this code?
import randomas r
print(random.randomint(1,10))



Mar 24, 2021
Q9. Modules are files saved with __ extension



Mar 24, 2021
Q10. Find The Output
s = "Welcome"
print(s[1:3])