mobile_chek

 avatar
SRN
python
3 years ago
170 B
5
Indexable
mobile = input()
if mobile.isdigit() and len(mobile) == 11:
    print('Номер сохранен')
else:
    print('Некоректный номер телефона')
Editor is loading...