-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Classification of information of ALL - Additional files
- Loading branch information
1 parent
ef6e19f
commit 0e47b43
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
''' | ||
This file calls the data generated and classified by main.py and | ||
then produces and interprets the final blood tests. | ||
The data generated by main.py is crucial in the production of accurate and reliable blood test results. | ||
This file acts as a bridge between the data classification process and the final interpretation of the blood tests. | ||
It helps to ensure that the results are based on a solid foundation of data analysis and that any anomalies or errors are identified and | ||
corrected before the tests are interpreted. By utilizing this file, medical professionals can | ||
have greater confidence in the accuracy of their blood test results, which can ultimately lead to better patient outcomes. | ||
''' | ||
|
||
import sqlite3 | ||
|
||
conn = sqlite3.connect('database.db') | ||
cursor = conn.execute("SELECT * FROM BLOOD_INFORMATION") | ||
rows = cursor.fetchall() | ||
|
||
def READ_DATA(data): | ||
|
||
counter = 1 | ||
for PARAMETER in data: | ||
print(f"{counter} - {PARAMETER}") | ||
counter += 1 | ||
|
||
|
||
|
||
READ_DATA(rows) |