Home
Posts filed under python
Showing posts with label python. Show all posts
Showing posts with label python. Show all posts
Thursday, October 25, 2018
IMDB movies Year wise Rating Comparison (Data Analysis) Python
Code: import requests import bs4 from matplotlib import pyplot as plt yearDict = {} def fetch ( year , counting = 100 ):...
Read more
Popular Singler on Top List (Data Analysis Gaana) Python
Screenshots: Code: import requests import bs4 # from matplotlib import pyplot as plt artistList = {} # def ploting()...
Wednesday, October 10, 2018
CD Store Management Python (Simple Approach)
ScreenShots : Code: listCD = [] def sortByIndex ( index ): for i in range ( 0 , len (listCD)): for j in...
Monday, October 8, 2018
Friday, September 21, 2018
Patient Management System Python Console Based
ScreenShots: Github link : https://github.com/mrdishant/Python/blob/master/patientManagement.py Code: cla...