so I'm kind of confused by a question I'm being asked which involves preventing division by zero exception not really sure what means. The question is, ask a user for 2 integers and divide them. Prevent the division by zero exception. Display the result.
I'm not sure what it means by prevent division by zero exception and how exactly do I do that? This is my code so far.
a = int(input("Give me an integer of your choice: "))
b = int(input("Give me another integer of your choice: "))
print(a/b)