SQLite is a self-contained, high-reliability, embedded, full-featured, public-domain, SQL database engine. It is the most used database engine on the world wide web. Python has a library to access SQLite databases, called sqlite3. Let’s see how we can delete a specific row from a given Sqlite table. First, Let’s create a database and table then […]
Month: April 2021
How to import CSV file into an SQLite Table using Python?
In this post, we will see how to import CSV file data into an SQLite database table using Python. Now, For solving this requirement we will be using two modules: sqlite3 and pandas. So let’s discuss these first. sqlite3 module is used to access SQLite databases in Python. SQLite is a self-contained, high-reliability, embedded, full-featured, […]
Biosafety Levels
According to the W.H.O. (World Health Organization), ” Biosafety is a strategic and integrated approach to analyzing and managing relevant risks to human, animal and plant life and health and associated risks for the environment. Biosafety is based on the link between different sectors and the potential of the hazards to spread between sectors. Biosafety […]
Python- practice paper – 1
In this post, we will see different types of questions based on python language which checks your python basic skills. Ques 1: Give the output that will be produced on the execution of the following code segments: Ques 2: Write a function series_sum(n) in Python to calculate the sum of the first n terms of […]