What will be the output of this program? a = 20.3 b = ‘Python’ c = ‘”Python”‘
Answers
Answered by
0
Answer:
no output.....since nothing is given
Answered by
0
Answer:
print(a)
20.3
print(b)
Python
print(c)
Python
Similar questions