1
2
3
4
5
6
7
8
9
10
11
12
| from mystudy import lecture
|
| lecture_count = input("Geben Sie die Anzahl der Veranstaltungen ein!")
| lecture_per_week = int(lecture_count)
|
| ects_input = input("Geben Sie die ECTS-Zahl der Vorlesung ein!")
| ects = int(ects_input)
|
| effort = lecture.lecture_effort(lecture_per_week, ects)
| text = lecture.format_lecture_effort("Mathematik", lecture_per_week, ects, effort)
|
| print(text)
|
|