Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming With Python Operators in Python
What will be the datatype of the test in the below code snippet?
test = 10
print(type(test))
test = "quizall"
print(type(test))
1
str and int
2
int and int
3
str and str
4
int and str