How to create a .db file in Python with sqlite3?Actually It’s really easy.
 Run the following code
 
 
| 1 | import sqlite3sqlite3.connect('./test.db') | 
After running the above code,the test.db file will be created if it does not exist.
 Of course,you have the proper permission to create the file.









