-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAss1.py
63 lines (48 loc) · 1.53 KB
/
Ass1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
class Main():
def a1(self):
a=int(input("Enter any no:"))
if a>0:
print(a, "is positive")
elif a<0:
print(a, "is negative")
else:
print("Entered number is zero")
return a
def a2(self):
b = int((input("Enter any number")))
if b*3<60:
print("Father's age is less")
elif b*3>60:
print("Father's age is greater")
else:
print("Father's age is equal to son's age")
def a3(self):
c = int(input("Enter any year"))
if c%400==0:
print(c, "is leap year")
elif c%100==0:
print(c, "is not leap year")
elif c%4==0:
print(c, "is leap year")
else:
print(c, "is not leap year")
def a4(self):
people = {1: {'name': 'John', 'age': '27', 'sex': 'Male'},
2: {'name': 'Marie', 'age': '22', 'sex': 'Female'},
3: {'name': 'Luna', 'age': '24', 'sex': 'Female', 'married': 'No'},
4: {'name': 'Peter', 'age': '29', 'sex': 'Male', 'married': 'Yes'},
5: {"name": {"Aishwarya": "cool"},
"loc": ["Mumbai", "Pune"]},
6: {"name": {"Snehal": "good"},
"loc": ("kolhapur", "Pune")}
}
print(people[5]["name"]["Aishwarya"])
print(people[5]["loc"])
print(people[6]["name"]["Snehal"])
print(people[6]["loc"])
obj=Main()
obj.a1()
obj.a2()
obj1=Main()
obj1.a3()
obj1.a4()