In this task we'll work with the Customers table. Below you can see an example of its structure. In the input you'll get information about 3 new customers (CustomerName, Address, City, PostalCode, Country). Put all customers in a list and use executemany() to insert the data in the table. Finally, commit the changes.
| CustomerID | CustomerName | Address | City | PostalCode | Country |
|---|---|---|---|---|---|
| 1 | Gerhard Häring | Rosenweg 20 | Berlin | 97215 | Germany |
The information of each client is separated by semicolons.