Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
336 views

Python Project

This document describes a Python project about creating a healthcare recommender system. The project allows a user to input their location, medical issue, and receives recommendations on the best nearby hospitals. Currently, it provides recommendations for 4 medical issues across 3 sectors of Gandhinagar, Gujarat. The project aims to help people easily find quality hospitals and get timely treatment. It is expected to be expanded to additional cities, medical issues, and sectors over time.

Uploaded by

Tej Patel
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
336 views

Python Project

This document describes a Python project about creating a healthcare recommender system. The project allows a user to input their location, medical issue, and receives recommendations on the best nearby hospitals. Currently, it provides recommendations for 4 medical issues across 3 sectors of Gandhinagar, Gujarat. The project aims to help people easily find quality hospitals and get timely treatment. It is expected to be expanded to additional cities, medical issues, and sectors over time.

Uploaded by

Tej Patel
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

PYTHON PROJECT

-VYOM PANDYA
-ROLL NUMBER: 11151
-TOPIC NUMBER: 4.1.1.1.11
-TOPIC: Basic knowledge of Computer Graphics
- SUBJECT: Computer Science

INDEX
1. Acknowledgments
2. What my project is about
3. Conclusion
4. Bibliography
ACKNOWLEDGMENT
I would like to express my special thanks of gratitude to my teacher
Respected A.K Meena who gave me the golden opportunity to do this
wonderful project on the topic ‘Healthcare recommender’.

WHAT MY PROJECT IS ABOUT

My project is a Hospital and Healthcare recommendation system where a


user can write his/her type of Injury and his/her location and my program
would suggest the best reviewed hospital near them. Currently this
program is available for 4 types of ailments and 3 sectors of the city of
Gandhinagar (Gujarat), but it is expected that new sectors, cities and
different ailments would be updated in the future time

INPUT:

name = input('Enter your name: ')

choice =input('Please describe the issue you are facing\n 1.Heart\n


2.General Issues(such as fever, common cold)\n 3.Emergency\n 4.Kids
health care\n Choose either of above numbers:')

if choice in '1':

print('Okay '+ name +' below is best Heart hospital near you')

sector: str = input('Please choose your sector from below options for
Heart hospital near you\n 1. Sargasan\n 2.Sector 30\n 3.Sector 13A\n
Enter number: ')

if sector in '1':

print('Sanjeevani Heart and Medical Hospital\n Phone number is


098240 24240')

elif sector in '2':

print('Dr. Darshan Pandya\n Phone number is 079 2324 1074')


elif sector in '3':

print('Civil Hospital, Gandhinagar\n Phone number is 079 2322 1931')

elif choice in '2':

print('There are 3 General Hospitals in Gandhinagar and these are:\n


1.Civil Hospital, Gandhinagar in Sector 12, with Phone number is 079 2322
1931\n 2.Shashvat Hospital in Sector 3-A with phone number 079 2324
3108\n Government Hosital in Gandhinagar Rd. 584/2 ')

elif choice in '3':

print('below is best Emergency hospital near you')

sector: str = input('Please choose your sector from below options for
Emergency hospitals near you\n 1. Sargasan\n 2.Sector 30\n 3.Sector
13A\n Enter number: ')

if sector in '1':

print('Aashka Multispeciality Hospital with phone number 098797


52777')

elif sector in '2':

print('Sanjeevani Hospital with phone number 079 2324 1074 ')

elif sector in '3':

print('Shakti Charitable trust emergency Ambulance service')

elif choice in '4':

print('below are Kids health care hospitals near you')

sector: str = input('Please choose your sector from below options for
Kids health care hospitals near you\n 1. Sargasan\n 2.Sector 30\n 3.Sector
13A\n Enter the number: ')

if sector in '1':
print('NeoKids Hospital with phone number 079 2975 0944')

elif sector in '2':

print('Yashdeep CARE Hospital with phone number 079 2326 0610')

elif sector in '3':

print('Foram clinic for children with phone number 079 2324 5950')

And the output is as follows:

OUTPUT:
Enter your name: Vyom Pandya

Please describe the issue you are facing

1.Heart

2.General Issues(such as fever, common cold)

3.Emergency

4.Kids health care

Choose either of above numbers:1

Okay Vyom Pandya below is best Heart hospital near you

Please choose your sector from below options for Heart hospital near you
1. Sargasan

2.Sector 30

3.Sector 13A

Enter number: 1

Sanjeevani Heart and Medical Hospital

Phone number is 098240 24240

CONCLUSION

My program could help many people as it would be easier for them to find
the best hospital around them and get treated and it would save a lot of
time since people would not have spend much time asking others for
different clinics, doctors, hospitals. I hope to make my program a major
successful in the future

BIBLIOGRAPHY
This project was only possible due to these people

1. My Computer Science teacher Respected A.K Meena for imparting the


knowledge for me to create this project seamlessly
2. Myself, since the code is original and is made by me without any outside
help

You might also like