You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write a program which can map() to make a list whose elements are square of numbers between 1 and 20 (both included).
1201
+
1202
+
Hints:
1203
+
1204
+
Use map() to generate a list.
1205
+
Use lambda to define anonymous functions.
1206
+
1207
+
Solution
1208
+
squaredNumbers = map(lambda x: x**2, range(1,21))
1209
+
print squaredNumbers
1210
+
1211
+
1212
+
1213
+
1214
+
#----------------------------------------#
1215
+
7.2
1216
+
1217
+
Question:
1218
+
Define a class named American which has a static method called printNationality.
1219
+
1220
+
Hints:
1221
+
1222
+
Use @staticmethod decorator to define class static method.
1223
+
1224
+
Solution
1225
+
class American(object):
1226
+
@staticmethod
1227
+
def printNationality():
1228
+
print "America"
1229
+
1230
+
anAmerican = American()
1231
+
anAmerican.printNationality()
1232
+
American.printNationality()
1233
+
1234
+
1235
+
1236
+
1237
+
#----------------------------------------#
1238
+
1239
+
7.2
1240
+
1241
+
Question:
1242
+
Define a class named American and its subclass NewYorker.
1243
+
1244
+
Hints:
1245
+
1246
+
Use class Subclass(ParentClass) to define a subclass.
1247
+
1248
+
Solution:
1249
+
1250
+
class American(object):
1251
+
pass
1252
+
1253
+
class NewYorker(American):
1254
+
pass
1255
+
1256
+
anAmerican = American()
1257
+
aNewYorker = NewYorker()
1258
+
print anAmerican
1259
+
print aNewYorker
1260
+
1261
+
1262
+
1263
+
1264
+
#----------------------------------------#
1265
+
1266
+
1267
+
7.2
1268
+
1269
+
Question:
1270
+
Define a class named Circle which can be constructed by a radius. The Circle class has a method which can compute the area.
1271
+
1272
+
Hints:
1273
+
1274
+
Use def methodName(self) to define a method.
1275
+
1276
+
Solution:
1277
+
1278
+
class Circle(object):
1279
+
def __init__(self, r):
1280
+
self.radius = r
1281
+
1282
+
def area(self):
1283
+
return self.radius**2*3.14
1284
+
1285
+
aCircle = Circle(2)
1286
+
print aCircle.area()
1287
+
1288
+
1289
+
1290
+
1291
+
1292
+
1293
+
#----------------------------------------#
1294
+
Define a class named Rectangle which can be constructed by a length and width. The Rectangle class has a method which can compute the area.
1295
+
1296
+
Hints:
1297
+
1298
+
Use def methodName(self) to define a method.
1108
1299
1300
+
Solution:
1301
+
1302
+
class Rectangle(object):
1303
+
def __init__(self, l, w):
1304
+
self.length = l
1305
+
self.width = w
1306
+
1307
+
def area(self):
1308
+
return self.length*self.width
1309
+
1310
+
aRectangle = Rectangle(2,10)
1311
+
print aRectangle.area()
1312
+
1313
+
1314
+
1315
+
1316
+
#----------------------------------------#
1317
+
Define a class named Shape and its subclass Square. The Square class has an init function which takes a length as argument. Both classes have a area function which can print the area of the shape where Shape's area is 0 by default.
1318
+
1319
+
Hints:
1320
+
1321
+
To override a method in super class, we can define a method with the same name in the super class.
0 commit comments