0
Hello I am making a system for inventory control but criterion was asked by my teacher to store the stock data in a list and store it in a file
and I have no idea how to do that.
0
Hello I am making a system for inventory control but criterion was asked by my teacher to store the stock data in a list and store it in a file
and I have no idea how to do that.
Browser other questions tagged python
You are not signed in. Login or sign up in order to post.
Start by studying lists in Python (https://docs.python.org/3/tutorial/datastructures.html); then study file manipulation (https://docs.python.org/3/tutorial/inputoutput.html#Reading-and-writing-files). After that I believe you will have enough knowledge to start the activity.
– Woss