|
|
@@ -2,28 +2,29 @@ import random
|
|
|
from random import randint
|
|
|
|
|
|
students_list = []
|
|
|
-# students_list = append("Бурдыко Максим")
|
|
|
+students_list.append("Бурдыко Максим")
|
|
|
students_list.append("Горбунов Егор")
|
|
|
students_list.append("Веденский Даниил")
|
|
|
students_list.append("Гузеев Иван")
|
|
|
students_list.append("Гуркин Вадим")
|
|
|
-# students_list.append("Дыбенко Екатерина")
|
|
|
+students_list.append("Горбунов Егор")
|
|
|
+students_list.append("Дыбенко Екатерина")
|
|
|
# students_list.append("Ерошко Евгений")
|
|
|
-# students_list.append("Коваленко Никита")
|
|
|
-# students_list.append("Лайков Арсений")
|
|
|
-students_list.append("Ласек Егор")
|
|
|
-# students_list.append("Маркеев Никита")
|
|
|
-# students_list.append("Мороз Александр")
|
|
|
-students_list.append("Паллер Александр")
|
|
|
-# students_list.append("Поддубная Евгения")
|
|
|
-# students_list.append("Приходько Иван")
|
|
|
+students_list.append("Коваленко Никита")
|
|
|
+students_list.append("Лайков Арсений")
|
|
|
+# students_list.append("Ласек Егор")
|
|
|
+students_list.append("Маркеев Никита")
|
|
|
+students_list.append("Мороз Александр")
|
|
|
+# students_list.append("Паллер Александр")
|
|
|
+students_list.append("Поддубная Евгения")
|
|
|
+students_list.append("Приходько Иван")
|
|
|
students_list.append("Ремезов Николай")
|
|
|
# students_list.append("Стадник Снежана")
|
|
|
students_list.append("Старинцев Леонид")
|
|
|
students_list.append("Стародубцев Даниил")
|
|
|
-students_list.append("Сущенок Владислав")
|
|
|
+# students_list.append("Сущенок Владислав")
|
|
|
students_list.append("Топальцев Роман")
|
|
|
-# students_list.append("Трофимова Арина")
|
|
|
+students_list.append("Трофимова Арина")
|
|
|
students_list.append("Цуканов Дмитрий")
|
|
|
|
|
|
"""
|
|
|
@@ -38,10 +39,10 @@ f.close()
|
|
|
s = "\n".join(students_list)
|
|
|
|
|
|
print(f"Список студентов в строку: {s}")
|
|
|
-
|
|
|
+"""
|
|
|
|
|
|
for stud in students_list:
|
|
|
- print(f"{stud} - Практическая работа № {random.randint (1, 6)}")
|
|
|
+ print(f"{stud}; Глава №{random.randint (1, 15)}, задача №{random.randint (1, 101)}")
|
|
|
|
|
|
|
|
|
|
|
|
@@ -51,5 +52,6 @@ print(f"Глава №{random.randint (1, 15)}, задача №{random.randint
|
|
|
rand_student = random.choice(students_list)
|
|
|
print(f"Случайный студент: {rand_student}")
|
|
|
|
|
|
+"""
|
|
|
|
|
|
|