Posts by user174660 • 1 point
1 post
-
-2
votes11
answers38715
viewsA: How to check if the variable string value is number?
def Verificar_tipo(num): try: num / 2 except TypeError: print("Não é um numero") return exit() else: …
1 post
-2
votes11
answers38715
viewsdef Verificar_tipo(num): try: num / 2 except TypeError: print("Não é um numero") return exit() else: …