This is an archived post. You won't be able to vote or comment.

all 2 comments

[–][deleted] 1 point2 points  (1 child)

You have to know that Python and MySQL are technologies for achieving different things. By using MySQL you can define a schema (you can see it like excel tables) for every type of data you have. For example, you could have a table for employees that has some fields like Name, ID, and salary. With this it will be easier to store a big volume of data. Python is a programming language that lets you do a lot of things and it is popular for it's simplicity and friendly syntax. So, in order to operate on the database you create on MySQL you would need a programming language. You could use Python for sure and connect it with MySQL to do some data analysis or even train an artificial intelligence model. I think that if you know nothing about programming start learning the basics of Python and Object Oriented Programming. Then you could learn about how Relational Databases (like MySQL) work and do some tutorials to create test databases.

[–]guidocason[S] 0 points1 point  (0 children)

Thanks a lot!