Introduction to Business Programming

Create 2 separate programs and for all programs Add a note to the top of the source code to explain the author, creation date, last change date, and purpose of the program. Whenever required, add comments to your code to describe variables or syntax. Use Source code (*.py file) in VS code and python code please.

1st program:
Create Database Tables, Create the database and create the tables, as described below.
The name of the database is music
The names of the tables to be created are artist and album.
The artist table has artist_id and name columns. artist_id is the primary key. The album table has columns album_id, title, and artist_id. Among these, album_id is the primary key.

2nd program:
Insert at least three artists into the Music table created in the previous program. In the Album table, enter at least 7 albums released by those three artists.