Python Forum
Populating a timetable with subjects - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Populating a timetable with subjects (/thread-17981.html)



Populating a timetable with subjects - brittocj - May-02-2019

Hello All,

We have to populate a timetable with subjects. What would be the best approach?

In our sample timetable there are 25 hours (keys), all the FH value should be replaced with random subjects as many as their corresponding hour.

timetable = [{'A1': "FH", 'B1': "FH", 'C1': "FH", 'D1': "FH", 'E1': "FH"},
{'A2': "FH", 'B2': "FH", 'C2': "FH", 'D2': "FH", 'E2': "FH"},
{'A3': "FH", 'B3': "FH", 'C3': "FH", 'D3': "FH", 'E3': "FH"},
{'A4': "FH", 'B4': "FH", 'C4': "FH", 'D4': "FH", 'E4': "FH"},
{'A5': "FH", 'B5': "FH", 'C5': "FH", 'D5': "FH", 'E5': "FH"}]

subjects_required_hours = {"S1": 4, "S2": 3, "S3": 5, "S4": 3, "S5": 5, "S6": 5}

Thanks
Britto


RE: Populating a timetable with subjects - buran - May-02-2019

what have you tried?