forked from utkarsh-iitbhu/Python-Workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPython_Exercises.py
More file actions
301 lines (216 loc) · 4.91 KB
/
Python_Exercises.py
File metadata and controls
301 lines (216 loc) · 4.91 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
# ## Exercises
# Answer the questions or complete the tasks outlined in bold below.
def power(a,b):
a=int(input())
b=int(input())
c= a**b
print(c)
return None
def split_str(s):
a=str(input("enter your string:"))
b=a.split()
print(b)
return None
def format(planet,diameter):
a=input("enter the name of your planet:")
b=int(input("enter the diameter:"))
print("The diameter of ",a," is ",b," kilometres.")
return None
def indexing(lst):
lst=[1,2,[3,4],[5,[100,200,['hello']],23,11],1,7]
print(lst[3][1][2][0])
return None
def dictionary(d):
d = {'k1':[1,2,3,{'tricky':['oh','man','inception',{'target':[1,2,3,'hello']}]}]}
print(d['k1'][3]['tricky'][3]['target'][3])
return None
def subjective():
immutable
return None
def domainGet(email):
a=input("enter your email:")
b=len(a)
z=-1
for i in a:
z+=1
if i=='@':
x=a[z+1:b]
print(x)
else:
continue
return None
def findDog(st):
s=input("enter your string:")
l=s.split()
for i in l:
if i=='dog':
print('true')
else:
continue
return None
def countDog(st):
ctr=0
s=input("enter your sring:")
l=s.split()
for i in l:
if i=='dog':
ctr=ctr+1
else:
continue
print("dog occured ",ctr," times.")
return None
def lambdafunc(seq):
a=[]
b=int(input("how many elements do you want:"))
for i in range(b):
c=input("enter your word:")
a.append(c)
print(a)
s=[]
for j in a:
d=j
if d[0]=='s':
s.append(d)
else:
continue
print(s)
#or
a=[]
b=int(input("how many elements do you want:"))
for i in range(b):
c=input("enter your word:")
a.append(c)
f=filter(lambda a: a[0]=='s',seq)
print(list(f))
return None
def caught_speeding(speed, is_birthday):
speed=int(input("enter the speed:"))
birthday=input("is it your birthday:")
if birthday=='yes':
if speed<=65:
print("no ticket")
elif speed>65 and speed<=85:
print("small ticket")
elif speed<85:
print("big ticket")
elif birthday=='no':
if speed<=60:
print("no ticket")
elif speed>60 and speed<=80:
print("small ticket")
elif speed<80:
print("big ticket")
return None
## Numpy Exercises
import numpy as np
def create_arr_of_fives():
a=[]
for i in range (10):
a.append(5)
print(a)
return None
def even_num():
a=[]
for i in range(10,51,2):
a.append(i)
print(a)
return None
def create_matrix():
mat=np.arrange(0,9).reshape(3,3)
print(mat)
return None
def linear_space():
a=1/20
b=[]
c=0
for i in range(20):
c=c+a
b.append(c)
print(b)
return None
def decimal_mat():
a=0.01
b=[]
c=0
for i in range(100):
c=c+a
b.append(c)
print(b)
return None
def slices_1():
# This is a given array
arr = np.arange(1,26).reshape(5,5)
a=([[ 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]])
x=[]
b=[]
c=[]
d=0
y=[]
for i in range (2,5):
d=d+1
for j in range (1,5):
if d==1:
x.append(a[i][j])
elif d==2:
b.append(a[i][j])
elif d==3:
c.append(a[i][j])
y.append(x)
y.append(b)
y.append(c)
print(y)
return None
def slices_2():
# This is a given array
arr = np.arange(1,26).reshape(5,5)
a=([[ 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]])
x=[]
b=[]
c=[]
d=[]
y=0
for i in range (0,3):
y=y+1
b.append(a[i][1])
elif y==2:
c.append(a[i][1])
elif y==3:
d.append(a[i][1])
x.append(b)
x.append(c)
x.append(d)
print(x)
return None
def slices_3():
# This is a given array
arr = np.arange(1,26).reshape(5,5)
a=([[ 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]])
x=[]
b=[]
c=[]
d=0
y=[]
for i in range (3,5):
d=d+1
for j in range (0,5):
if d==1:
x.append(a[i][j])
elif d==2:
b.append(a[i][j])
y.append(x)
y.append(b)
print(y)
return None
# Great job!