Computer Science, asked by pareshdev1754, 1 year ago

What will be the output of this program? a = 20.3 b = ‘Python’ c = ‘”Python”‘

Answers

Answered by xsmax
0

Answer:

no output.....since nothing is given

Answered by programpython001
0

Answer:

print(a)

20.3

print(b)

Python

print(c)

Python

Similar questions