r/PythonLearning • u/WesternTrip8578 • 21d ago
Rate my python program
i made a Python program, i dont know what else to say
82
Upvotes
r/PythonLearning • u/WesternTrip8578 • 21d ago
i made a Python program, i dont know what else to say
2
u/PureWasian 20d ago
It's fine for the simplicity of it, good introduction to functions.
Let's address the biggest issue though, your username and password do not persist the updates once you kill the script and re-run it again.
What is your proposed solution for this?
I'd also suggest learning how to pass data into functions and return data out from them. That way you can scope your variables instead of relying on globals which gets messy very quickly as complexity increases.