coba kecuali python tidak berfungsi

b = 0
try:
    print(a/b) # a/0
except ZeroDivisionError:
    print("It's Infinite") 
Rajanit Navapara