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
Copy file name to clipboardexpand all lines: 100+ Python challenging programming exercises.txt
+269
Original file line number
Diff line number
Diff line change
@@ -1291,6 +1291,9 @@ print aCircle.area()
1291
1291
1292
1292
1293
1293
#----------------------------------------#
1294
+
1295
+
7.2
1296
+
1294
1297
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
1298
1296
1299
Hints:
@@ -1314,6 +1317,9 @@ print aRectangle.area()
1314
1317
1315
1318
1316
1319
#----------------------------------------#
1320
+
1321
+
7.2
1322
+
1317
1323
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
1324
1319
1325
Hints:
@@ -1350,10 +1356,273 @@ print aSquare.area()
1350
1356
#----------------------------------------#
1351
1357
1352
1358
1359
+
Please raise a RuntimeError exception.
1353
1360
1361
+
Hints:
1354
1362
1363
+
Use raise() to raise an exception.
1364
+
1365
+
Solution:
1366
+
1367
+
raise RuntimeError('something wrong')
1355
1368
1356
1369
1357
1370
1358
1371
#----------------------------------------#
1372
+
Write a function to compute 5/0 and use try/except to catch the exceptions.
1373
+
1374
+
Hints:
1375
+
1376
+
Use try/except to catch exceptions.
1377
+
1378
+
Solution:
1379
+
1380
+
def throws():
1381
+
return 5/0
1382
+
1383
+
try:
1384
+
throws()
1385
+
except ZeroDivisionError:
1386
+
print "division by zero!"
1387
+
except Exception, err:
1388
+
print 'Caught an exception'
1389
+
finally:
1390
+
print 'In finally block for cleanup'
1391
+
1392
+
1393
+
#----------------------------------------#
1394
+
Define a custom exception class which takes a string message as attribute.
1395
+
1396
+
Hints:
1397
+
1398
+
To define a custom exception, we need to define a class inherited from Exception.
1399
+
1400
+
Solution:
1401
+
1402
+
class MyError(Exception):
1403
+
"""My own exception class
1404
+
1405
+
Attributes:
1406
+
msg -- explanation of the error
1407
+
"""
1408
+
1409
+
def __init__(self, msg):
1410
+
self.msg = msg
1411
+
1412
+
error = MyError("something wrong")
1413
+
1414
+
#----------------------------------------#
1415
+
Question:
1416
+
1417
+
Assuming that we have some email addresses in the "[email protected]" format, please write program to print the user name of a given email address. Both user names and company names are composed of letters only.
1418
+
1419
+
Example:
1420
+
If the following email address is given as input to the program:
In case of input data being supplied to the question, it should be assumed to be a console input.
1429
+
1430
+
Hints:
1431
+
1432
+
Use \w to match letters.
1433
+
1434
+
Solution:
1435
+
import re
1436
+
emailAddress = raw_input()
1437
+
pat2 = "(\w+)@((\w+\.)+(com))"
1438
+
r2 = re.match(pat2,emailAddress)
1439
+
print r2.group(1)
1440
+
1441
+
1442
+
#----------------------------------------#
1443
+
Question:
1444
+
1445
+
Assuming that we have some email addresses in the "[email protected]" format, please write program to print the company name of a given email address. Both user names and company names are composed of letters only.
1446
+
1447
+
Example:
1448
+
If the following email address is given as input to the program:
0 commit comments