Skip to content

Commit 0d08433

Browse files
authored
init: python task
1 parent e87e839 commit 0d08433

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
'''Реализуйте функцию is_international_phone(), которая проверяет формат указанного телефона. Если телефон начинается с +, значит это международный формат.
2+
3+
is_international_phone('89602223423') # False
4+
is_international_phone('+79602223423') # True'''
5+
6+
def is_international_phone(phone):
7+
return phone[0] == '+'

0 commit comments

Comments
 (0)