+ 2
How do you do question 4 (module 4 quiz)
I really don't understand. .
6 Answers
+ 5
Module 4: Question number 2
Fill in the blanks to output "Wrong Input" if the input is not an integer. 
num = input() 
 
try : 
x = int(num) 
except : 
 
print ("Wrong Input")
+ 1
num = input()
try
:
   x = int(num)
except
:
   
print
("Wrong Input")
0
fill w/ int
0
ok i am just looking for a date XD
- 1
If a is greater or equal to b than you get a as result, if not you get b displayed. So than you know what is max value.
- 1
I still don't understand 



