I have a bunch of tuples:
Stadt = ("Berlin", "Santiago", "Madrid", "Dallas", "Mexico")
Befolkerung = (3.8, 5.6, 6.6, 1.34, 8.86)
Land = ("Deutschland", "Chile", "Spanien", "Vereinigte Staaten", "Mexico")
Breitengrad = (1,2,3,4,5)
Langengrad = (2,4,6,8,10)
I would like to create a dictionary from these with Stadt
as keys and the rest of the tuples as values. How would you go about this?