+ 4
list of names and ages
how to make a list that stored in the code every time user entered data? https://sololearn.com/compiler-playground/cR94UhjX3QZP/?ref=app
1 Answer
+ 6
data = []
name = input()
data.append(name)
This is how you can add a value taken from the user, to a list.
You can ask for multiple inputs, even inside a loop. But on Sololearn everything will reset when the program finished running. You cannot save data to start the next run with. For this, you would have to implement some kind of persistence in a real program: save the data on the filesystem, or in a database, or somewhere in the cloud.