I want to know how to create accounts that save
Like in the fishing game, there were accounts that saved your progress
I want to know how to do this in python pls
Thanks!
You could either use a text file or a database to save each account name.
import mysql.connector mydb = mysql.connector.connect( host="localhost", user="yourusername", passwd="yourpassword" ) print(mydb)
Help Pls
I want to know how to create accounts that save
Like in the fishing game, there were accounts that saved your progress
I want to know how to do this in python pls
Thanks!
You could either use a text file or a database to save each account name.
Here is an example with Python:
I'll try figure it out
Looks complicated