Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Challenging Programs #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Challenge questions/manojathreya/1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#@author:Manoj Athreya A

#write a program to print occurance count of all the characters of a string.

str="Good Morning"
d=dict()
count=0
for char in str:
if char in d:
d[char]=d[char]+1
else:
d[char]=1
print(d)

#OUTPUT: {'G': 1, 'o': 3, 'd': 1, ' ': 1, 'M': 1, 'r': 1, 'n': 2, 'i': 1, 'g': 1}

29 changes: 29 additions & 0 deletions Challenge questions/manojathreya/2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#@author:Manoj Athreya A

#Vacation Caluclator
def hotel_cost(days):
return 140 * days

def plane_ride_cost(city):
if city == "Charlotte":
return 183
elif city == "Tampa":
return 220
elif city == "Pittsburgh":
return 222
elif city == "Los Angeles":
return 475

def rental_car_cost(days):
cost = days * 40
if days >= 7:
cost -= 50
elif days >= 3:
cost -= 20
return cost

def trip_cost(city, days, spending_money):
return rental_car_cost(days) + hotel_cost(days) + plane_ride_cost(city) + spending_money

print (trip_cost("Los Angeles", 5, 600))
#1955
27 changes: 27 additions & 0 deletions Challenge questions/manojathreya/3.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#@author:Manoj Athreya A

#Class Program
class A:
def __init__(self,val1,val2):
self.__a=val1
self.b=val2
def display(self):
print(self.__a,self.b)

class B(A):
def __init__(self,v1,v2,v3):
super().__init__(v1,v2)
self.__c=v3
def display(self):
super().display()
print(self.__c)
print(self.b)

obj=B(10,20,30)
obj.display()
# =============================================================================
# #output:
# 10 20
# 30
# 30
# =============================================================================
55 changes: 55 additions & 0 deletions Challenge questions/manojathreya/4.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
#@author:Manoj Athreya A

#DATABASE CREATION

import sqlite3

conn=sqlite3.connect('movie.sqlite')
cur=conn.cursor()

cur.execute('DROP TABLE IF EXISTS Movies')

cur.execute('CREATE TABLE Movies(title TEXT,ratings INTEGER)')
cur.execute('INSERT INTO Movies(title,ratings) VALUES (?,?)',('KGF',5))
cur.execute('INSERT INTO Movies(title,ratings) VALUES (?,?)',('Natasarvabhouma',3))
cur.execute('''INSERT INTO MOVIES VALUES('Yajamana','4')''')
cur.execute('''INSERT INTO MOVIES VALUES('99','3.5')''')
cur.execute('SELECT * FROM Movies')

for row in cur:
print(row)

cur.execute('SELECT title,ratings FROM Movies')
for row in cur:
print(row)

# =============================================================================
# OUTPUT:
# ('KGF', 5)
# ('Natasarvabhouma', 3)
# ('Yajamana', 4)
# ('99', 3.5)
# =============================================================================

cur.execute('SELECT title FROM Movies')
for row in cur:
print(row)
# =============================================================================
# OUTPUT:
# ('KGF',)
# ('Natasarvabhouma',)
# ('Yajamana',)
# ('99',)
# =============================================================================
cur.execute('SELECT ratings FROM Movies')
for row in cur:
print(row)
# =============================================================================
# OUTPUT:
# (5,)
# (3,)
# (4,)
# (3.5,)
# =============================================================================
cur.close()
conn.close()