0.3(добавление функции добавки блюда)

This commit is contained in:
ada-dmitry
2024-04-30 09:16:59 +03:00
parent 308b719963
commit f0c162cd68
17 changed files with 587 additions and 27 deletions
+5
View File
@@ -0,0 +1,5 @@
import re
def is_cyr_or_dig(string):
pattern = r'^[\u0400-\u04FF\d]+$'
return bool(re.match(pattern, string))