28
LAB SESSION
Perfection Through Practice
A. Rewrite the following statements after correcting them:
1. a=100
b=20
if(a>b)
print(a)
else
print(b)
Answers
Answered by
5
a = 100
b = 20
if a>b:
print(a)
else:
print(b)
I think this is Python..... so leave 4 spaces while indenting
Hope this helps you....All the best
Similar questions
Social Sciences,
4 months ago
Math,
8 months ago
English,
8 months ago
Computer Science,
11 months ago