1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """ Fonction voir si on a entré un nombre naturel """ """ Je rente une chaine et la fonction dont me dire si c'est un entier naturel ou non """ def Entier(n): for c in range(0,len(n)): if n[c] > "0" or n[c] <"9" : test = True print(n[c]) else : test = False print(n[c]) return test test=bool() Val = input("entrer un Truc :") Entier(Val) print(test) |
+1
-12