Posts by Aboud • 153 points
4 posts
-
0
votes2
answers78
views -
1
votes2
answers72
viewsA: How do I store data and not delete when the program ends?
You need to save this list to a file, and read this file when you run the program (if it exists). The hardest part of doing this is translating your data into a file and vice versa. I’ll show you 3…
-
0
votes1
answer16
views -
1
votes1
answer236
viewsA: python3 No Module Named pyaudio
You came to install the pyaudio? That one pyaudio is a module, ie a code made by another(s) person(s) that you can include in your project. It does not come by default in Python, so you have to…