diff --git a/task_1.py b/task_1.py new file mode 100644 index 0000000..92134e1 --- /dev/null +++ b/task_1.py @@ -0,0 +1,11 @@ +def func(v1, v2): + return v1 / v2 + + +v1 = int(input('введите число: ')) +v2 = int(input('введите число: ')) + +if v2 == 0: + print('на 0 делить нельзя') +else: + print(func(v1, v2)) diff --git a/task_2.py b/task_2.py new file mode 100644 index 0000000..7732976 --- /dev/null +++ b/task_2.py @@ -0,0 +1,6 @@ +def data(**kwargs): + return ' '.join(kwargs.values()) + + +print(data(name=input('введите имя: '), surname=input('введите фамилию: '), email=input('введите email: '), + yearBirth=input('введите год рождения: '), city=input('введите город проживания: '))) diff --git a/task_3.py b/task_3.py new file mode 100644 index 0000000..9011243 --- /dev/null +++ b/task_3.py @@ -0,0 +1,10 @@ +def my_func(f1, f2, f3): + my_list = [f1, f2, f3] + try: + my_list.remove(min(my_list)) + return sum(my_list) + except TypeError: + print('вводите числа') + + +print(my_func(2, 5, 58)) diff --git a/task_4.py b/task_4.py new file mode 100644 index 0000000..8fa4f35 --- /dev/null +++ b/task_4.py @@ -0,0 +1,4 @@ +def my_func(v1, v2): + return (1 / (v1 ** abs(v2))) + +print(my_func(int(input('введите число ')), int(input('введите отрицательное число ')))) \ No newline at end of file diff --git a/task_5.py b/task_5.py new file mode 100644 index 0000000..b892abc --- /dev/null +++ b/task_5.py @@ -0,0 +1,16 @@ +def sum(): + number = 0 + while True: + list = input('вводите числа, для выхода - Q: ').split() + for item in list: + if item == "Q": + return number + else: + try: + number += int(item) + except ValueError: + print('для выхода надо жать Q. Большое Q') + print(f'сумма чисел - {number}') + + +print(sum()) \ No newline at end of file diff --git a/task_6.py b/task_6.py new file mode 100644 index 0000000..7336b9f --- /dev/null +++ b/task_6.py @@ -0,0 +1,9 @@ +def int_func(): + for text in input('введите слова с пробелом из маленьких латинских букв: ').split(): + chars = 0 + for char in text: + if 97 <= ord(char ) <= 122: + chars += 1 + print(text.title()) + +int_func()