line = "101;johnny 'wave-boy' Jones;USA;8.32;Fish;21"
s = {}
(s['id'], s['name'], s['country'], s['average'], s['board'], s['age']) = line.split(";")
# above, why is "s" and the end of the key list surrounded by parenthesis?
print("ID: " + s['id'])
print("Name: " + s['name'])
print("Country " + s['country'])
print("Average " + s['average'])
print("Board type: " + s['board'])
print("Age: " + s['age'])
The program is also not displaying the ID.