프로그래밍/Python
python Quiz - What will be the datatype of the var in the below code snippet?
홍반장水_
2023. 4. 7. 14:10
반응형
https://codecrazypy.blogspot.com/2023/03/python-mcqs-quiz-1.html
Python MCQ's Quiz-1
Here you can find some infomation about exams,educational events and how to prepare for competitive exams likes ssc gd, railway exams,
codecrazypy.blogspot.com
What will be the datatype of the var in the below code snippet?
var = 10
print(type(var))
var = "Hello"
print(type(var))
반응형