tester si le caractère est un numéro de chaîne Python
>>> 'A'.isdigit()
False
>>> '1'.isdigit()
True
Disturbed Dragonfly
>>> 'A'.isdigit()
False
>>> '1'.isdigit()
True
for number in numbers:
if '4' in str(number):
print('{} True'.format(number))
else:
print("False")
s = set(str(4059304593))
print('2' in s)