Hi all,
I am learning Python and also teaching a class and I want to build a program that random assigns students a day to do their presentation.
Thanks in advance
I am learning Python and also teaching a class and I want to build a program that random assigns students a day to do their presentation.
dates = ['Jan 6', 'Jan 8', 'Jan 10'] students = ['Joey,' 'Henry', 'Daniel', 'James', 'Samantha', 'Jose', 'Salvator', 'Paul', 'Steve', 'Mary', 'Kyle', 'Marcus', 'Pat']I am trying to randomly assign students to one of the days to do a presentation. I would thus want an item from List 1 to match with an item in List 2, but am unsure of how to do this.
Thanks in advance