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