Say I have a list of strings like so:
list = ["Jan 1", "John Smith", "Jan 2", "Bobby Johnson"]
How can I split them into two separate lists like this? My teacher mentioned something about indexing but didn't do a very good job of explaining it
li1 = ["Jan 1", "John Smith"]
li2 = ["Jan 2", "Bobby Johnson"]