User input within a function | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

User input within a function

I have defined a function which checks if user input is 0. If yes then prevent exception and ask for user input again. Lastly return the new user input. But somehow the new user input is not taken and 0 is returned. Please guide as to how to solve this problem.

31st Mar 2017, 9:44 AM
Bobby Joseph
Bobby Joseph - avatar
5 Answers
+ 16
Please post your code for inspection.
31st Mar 2017, 9:46 AM
Hatsy Rei
Hatsy Rei - avatar
+ 5
The function only checks if the value is zero and does not assign back its value to the argument. So after executing it, num1 stays exactly as it was before the checkup. To be honest, I would write it completely differently, but you may try this: num1 = ZeroDivisionChecking(num1) num2 = ZeroDivisionChecking(num2) Should do the trick.
31st Mar 2017, 11:17 AM
Kuba SiekierzyƄski
Kuba SiekierzyƄski - avatar
+ 4
No problem, man. I hope my answer was the best answer, if you know what I mean ;)
31st Mar 2017, 5:46 PM
Kuba SiekierzyƄski
Kuba SiekierzyƄski - avatar
+ 1
Thank you Kuba... I understood :-)
31st Mar 2017, 11:36 AM
Bobby Joseph
Bobby Joseph - avatar
0
def ZeroDivisionChecking(x): while x==0: try: print("checking") print(1/x) except ZeroDivisionError: print("you should not enter zero") finally: print("program will continue to run \n") x= float(input("enter number other than zero: ")) return x print ("enter the num1") num1=float(input(": ")) # the below is calling the function 'ZeroDivisionChecking' to check the input is not 0 ZeroDivisionChecking(num1) print ("enter the num2") num2=float(input(": ")) # the below is calling the function 'ZeroDivisionChecking' to check the input is not 0 ZeroDivisionChecking(num2) ans = num1/num2 print("\n >>>ANS is below<<<") print(ans) print("\n")
31st Mar 2017, 9:54 AM
Bobby Joseph
Bobby Joseph - avatar