Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Урок 2 #1800

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Урок 1. Практическое задание/task_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@
Введите ваш возраст: 45
Ваши данные для входа в аккаунт: имя - Василий, пароль - vas, возраст - 45
"""

name = input("\nДобрый день,мяу! Как мне вас называть,мяу?\n")
print(f"\nМяу, {name}, мур-мур\n")

age = input(f"{name} сколько вам лет?\n")
print( f"\nВам {age}? Вы такой взрослый, {name}, мяу :3\n")
6 changes: 6 additions & 0 deletions Урок 1. Практическое задание/task_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@
Введите время в секундах: 3600
Время в формате ч:м:с - 1.0 : 60.0 : 3600
"""

import datetime

input_seconds = int(input("Введите время в секундах: "))
seconds_to_datetime = datetime.timedelta(seconds=input_seconds)
print(seconds_to_datetime)
3 changes: 3 additions & 0 deletions Урок 1. Практическое задание/task_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@
Введите число n: 3
n + nn + nnn = 369
"""

n = int(input("Введите число: "))
print(n + int(str(n) * 2) + int(str(n) * 3))
11 changes: 11 additions & 0 deletions Урок 1. Практическое задание/task_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,14 @@
Ведите целое положительное число: 123456789
Самая большая цифра в числе: 9
"""

user_num = int(input("Введите целое положительное число: "))

max_user_num = user_num % 10
user_num = user_num // 10

while user_num > 0:
if user_num % 10 > max_user_num:
max_user_num = user_num % 10
user_num = user_num // 10
print(max_user_num)
13 changes: 13 additions & 0 deletions Урок 1. Практическое задание/task_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,16 @@
Введите численность сотрудников фирмы: 10
Прибыль фирмы в расчете на одного сотрудника = 50.0
"""

revenue = float(input("Какая у вас выручка?\n"))
costs = float(input("Каковы издержки фирмы?\n"))

if revenue > costs:
profit = revenue - costs
staff = int(input("Введите количество сотрудников:\n"))
staff_profit = profit / staff
print(f"Прибыль на одного сотрудника компании равна:" "{:.2f}".format(staff_profit) + " рублей.")
elif revenue < costs:
print("Издержки привышают доход")
elif revenue == costs:
print("Издержки равны доходу")
14 changes: 14 additions & 0 deletions Урок 1. Практическое задание/task_6.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,17 @@
6-й день: 3,22
Ответ: на 6-й день спортсмен достиг результата — не менее 3 км.
"""

a = int(input("Каков ваш результат забега сегодня?\n"))
b = int(input("Сколько километров вы планируете пробежать?\n"))

day = 1

print(f"{str(day)} день" "%.2f" % a)

while float(a) < b:
a += float(a) * 0.1
day += 1
print(f"{str(day)} день" "%.2f" % a)

print(f"На {str(day)} день спортсмен достиг результата — не менее {str(b)} км.")
5 changes: 5 additions & 0 deletions Урок 2. Практическое задание/task_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,8 @@
<class 'bool'>
<class 'NoneType'>
"""

a = [5, "string", 0.15, True, None]

for el in a:
print(type(el))
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

выполнено

11 changes: 11 additions & 0 deletions Урок 2. Практическое задание/task_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,14 @@
Введите целые числа через пробел: 1 2 3
Результат: 2 1 3
"""

user_input_list = list(input("Введите значения: ").split())

user_list = []

for i in range(0, len(user_input_list), 2):
j = i + 2
a = user_input_list[i:j]
a.reverse()
user_list.extend(a)
print(user_list)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

выполнено

41 changes: 41 additions & 0 deletions Урок 2. Практическое задание/task_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,44 @@
Результат через список: Осень
Результат через словарь: Осень
"""

"""
Вариант 1
"""
print("\nВариант 1: list.\n")

month_name_lst = ["Зима", "Весна", "Лето", "Осень"]

input_month_lst = int(input("Введите номер месяца:"))

if input_month_lst == 1 or input_month_lst == 2 or input_month_lst == 12:
print(month_name_lst[0])
if input_month_lst == 3 or input_month_lst == 4 or input_month_lst == 5:
print(month_name_lst[1])
if input_month_lst == 6 or input_month_lst == 7 or input_month_lst == 8:
print(month_name_lst[2])
if input_month_lst == 9 or input_month_lst == 10 or input_month_lst == 11:
print(month_name_lst[3])
if input_month_lst <= 0 or input_month_lst >= 13:
print("\nТакого номера месяца нет.Введите число от 1 до 12.\n")

"""
Вариант 2
"""
print("\nВариант 2: dict.\n")

season_dict = {
"Зима": [12,1,2],
"Весна": [3,4,5],
"Лето": [6,7,8],
"Осень": [9,10,11]
}

input_month_dict = int(input("Введите номер месяца:"))

for key, value in season_dict.items():
if input_month_dict in value:
print(key)
break
else:
print("\nТакого номера месяца нет.Введите число от 1 до 12.\n")
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

выполнено

5 changes: 5 additions & 0 deletions Урок 2. Практическое задание/task_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@
1. раз
2. перерефриж
"""

user_input_list = input("Введите несколько слов через пробел: ").split()

for i, el in enumerate(user_input, 1):
print(i, el[0:10])
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

выполнено

9 changes: 9 additions & 0 deletions Урок 2. Практическое задание/task_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,12 @@
Набор натуральных чисел можно задать непосредственно в коде,
например, my_list = [7, 5, 3, 3, 2].
"""

my_list = [7, 5, 3, 3, 2]

user_input = int(input('Введите целое, положительное число: '))

my_list.append(user_input)
my_list.sort(reverse=True)

print(f'Рейтинг: {my_list}')
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

выполнено

42 changes: 42 additions & 0 deletions Урок 2. Практическое задание/task_6.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,45 @@
“ед”: [“шт.”]
}
"""

goods = []
goods_num = 1

anal_dic = {
"Наименование:": [],
"Цена:": [],
"Количество:": [],
"Ед. измерения:": []
}

while True:
input_name = input("Введите наименование товара: ")
input_price = float(input("Введите цену товара: "))
input_quantity = int(input("Введите количество товара: "))
input_unit = input("Введите еденицу измерения товара: ")

summary_input = {
"Наименование:": input_name,
"Цена:": input_price,
"Количество:": input_quantity,
"Ед. измерения:": input_unit
}

summary_goods = (goods_num, summary_input)
goods.append(summary_goods)

for key, value in summary_input.items():
i = anal_dic.get(key)
if value in i:
continue
i.append(value)
continue

goods_num += 1

question_for_exit = input("Закончить ввод?\n").lower()
if question_for_exit == "да":
print("\n",goods)
break

print("\n",goods)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

выполнено