diff --git a/StudentFunction/StudentParcer.py b/StudentFunction/StudentParcer.py new file mode 100644 index 0000000..0dbf232 --- /dev/null +++ b/StudentFunction/StudentParcer.py @@ -0,0 +1,10 @@ +def parce_card(sequence): + """ + + :param sequence: тип: рядок, звідки: введено користувачем, формат:(серія)№(номер), приклад: КВ№12345678 + :return: тип: рядок, формат: (серія), (номер), приклад: КВ, 12345678 + """ + print(sequence) + return None +if __name__ == '__main__': + parce_card('smth') \ No newline at end of file diff --git a/StudentFunction/__init__.py b/StudentFunction/__init__.py new file mode 100644 index 0000000..e69de29