students = ["Kuba", "Eliška", "Jirka", "Honza", "Kuba2", "Kuba3", "Fanda"] subjects = ["PVA", "MAT", "WBD"] """ for i in range(len(students)): print(students[i]) for subject in subjects: print(subject) """ studentsInSubjects = [] for student in students: for subject in subjects: studentsInSubjects.append("Student: " + student + " je přihlášen na předmět: " + subject) for studentInSubject in studentsInSubjects: print(studentInSubject) """ print(type(subjects)) print(subjects[1]) print(type(subjects[1])) """