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

thumbnail
Code: import requests import bs4 from matplotlib import pyplot as plt yearDict = {} def fetch ( year , counting = 100 ):...

Popular Singler on Top List (Data Analysis Gaana) Python

thumbnail
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)

thumbnail
ScreenShots : Code: listCD = [] def sortByIndex ( index ): for i in range ( 0 , len (listCD)): for j in...
Monday, October 8, 2018

CD Store Management System Python

thumbnail
Assignment: Function SortByArtist Input: List of CDs Output: Updates the list of CDs so th...
Friday, September 21, 2018

Patient Management System Python Console Based

thumbnail
ScreenShots: Github link : https://github.com/mrdishant/Python/blob/master/patientManagement.py Code: cla...