| 123456789101112131415161718192021222324252627282930 | import randomstudents_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("Цуканов Дмитрий")for student in students_list:    mark=random.randint(2,5)    print(student,"-", mark)        
 |