Take two variables, assign the first variable with an arbitrary integer of your choice, assign the second variable with “Program” and print both the variable types. (python)
Answers
Answered by
1
Answer:
x=7
y='Program'
print()
print(x,type(x))
print(y,type(y))
Explanation:
type() function helps us to know the type of variable.
Similar questions
Environmental Sciences,
2 months ago
Math,
2 months ago
Computer Science,
4 months ago
Science,
11 months ago
Math,
11 months ago