inflab3/dop2.py

22 lines
506 B
Python
Raw Permalink Normal View History

2023-07-20 22:06:53 +00:00
# Дополнительное задание №2
# Номер в ИСУ: 316304
# Вариант: 0
import re
import sys
regex = re.compile('[\w.]+@(\w+\.\w+)')
def get_email_server(text):
match = re.match(regex, text)
return 'Fail!' if match is None else match.group(1)
if __name__ == '__main__':
args = sys.argv
if len(args) > 1:
print('Почтовый сервер: ' + get_email_server(args[1]))
else:
print('Недостаточно аргументов')