Python Map Threading Generators Decorators Regex

Mon 30 June 2025
# Cell 1 - map

nums_1 = list(range(2))
squared_1 = list(map(lambda x: x ** 2, nums_1))
print("Cell 1 - map")
print("Input:", nums_1)
print("Squared:", squared_1)
Cell 1 - map
Input: [0, 1]
Squared: [0, 1]
# Cell 2 - map

nums_2 = list(range(3))
squared_2 = list(map(lambda x: x ** 2, nums_2))
print("Cell 2 - map")
print("Input:", nums_2)
print("Squared:", squared_2)
Cell 2 - map
Input: [0, 1, 2]
Squared: [0, 1, 4]
# Cell 3 - map

nums_3 = list(range(4))
squared_3 = list(map(lambda x: x ** 2, nums_3))
print("Cell 3 - map")
print("Input:", nums_3)
print("Squared:", squared_3)
Cell 3 - map
Input: [0, 1, 2, 3]
Squared: [0, 1, 4, 9]
# Cell 4 - map

nums_4 = list(range(5))
squared_4 = list(map(lambda x: x ** 2, nums_4))
print("Cell 4 - map")
print("Input:", nums_4)
print("Squared:", squared_4)
Cell 4 - map
Input: [0, 1, 2, 3, 4]
Squared: [0, 1, 4, 9, 16]
# Cell 5 - map

nums_5 = list(range(6))
squared_5 = list(map(lambda x: x ** 2, nums_5))
print("Cell 5 - map")
print("Input:", nums_5)
print("Squared:", squared_5)
Cell 5 - map
Input: [0, 1, 2, 3, 4, 5]
Squared: [0, 1, 4, 9, 16, 25]
# Cell 6 - map

nums_6 = list(range(7))
squared_6 = list(map(lambda x: x ** 2, nums_6))
print("Cell 6 - map")
print("Input:", nums_6)
print("Squared:", squared_6)
Cell 6 - map
Input: [0, 1, 2, 3, 4, 5, 6]
Squared: [0, 1, 4, 9, 16, 25, 36]
# Cell 7 - map

nums_7 = list(range(8))
squared_7 = list(map(lambda x: x ** 2, nums_7))
print("Cell 7 - map")
print("Input:", nums_7)
print("Squared:", squared_7)
Cell 7 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7]
Squared: [0, 1, 4, 9, 16, 25, 36, 49]
# Cell 8 - map

nums_8 = list(range(9))
squared_8 = list(map(lambda x: x ** 2, nums_8))
print("Cell 8 - map")
print("Input:", nums_8)
print("Squared:", squared_8)
Cell 8 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 9 - map

nums_9 = list(range(10))
squared_9 = list(map(lambda x: x ** 2, nums_9))
print("Cell 9 - map")
print("Input:", nums_9)
print("Squared:", squared_9)
Cell 9 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 10 - map

nums_10 = list(range(11))
squared_10 = list(map(lambda x: x ** 2, nums_10))
print("Cell 10 - map")
print("Input:", nums_10)
print("Squared:", squared_10)
Cell 10 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 11 - map

nums_11 = list(range(12))
squared_11 = list(map(lambda x: x ** 2, nums_11))
print("Cell 11 - map")
print("Input:", nums_11)
print("Squared:", squared_11)
Cell 11 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 12 - map

nums_12 = list(range(13))
squared_12 = list(map(lambda x: x ** 2, nums_12))
print("Cell 12 - map")
print("Input:", nums_12)
print("Squared:", squared_12)
Cell 12 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 13 - map

nums_13 = list(range(14))
squared_13 = list(map(lambda x: x ** 2, nums_13))
print("Cell 13 - map")
print("Input:", nums_13)
print("Squared:", squared_13)
Cell 13 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 14 - map

nums_14 = list(range(15))
squared_14 = list(map(lambda x: x ** 2, nums_14))
print("Cell 14 - map")
print("Input:", nums_14)
print("Squared:", squared_14)
Cell 14 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 15 - map

nums_15 = list(range(16))
squared_15 = list(map(lambda x: x ** 2, nums_15))
print("Cell 15 - map")
print("Input:", nums_15)
print("Squared:", squared_15)
Cell 15 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 16 - map

nums_16 = list(range(17))
squared_16 = list(map(lambda x: x ** 2, nums_16))
print("Cell 16 - map")
print("Input:", nums_16)
print("Squared:", squared_16)
Cell 16 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 17 - map

nums_17 = list(range(18))
squared_17 = list(map(lambda x: x ** 2, nums_17))
print("Cell 17 - map")
print("Input:", nums_17)
print("Squared:", squared_17)
Cell 17 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 18 - map

nums_18 = list(range(19))
squared_18 = list(map(lambda x: x ** 2, nums_18))
print("Cell 18 - map")
print("Input:", nums_18)
print("Squared:", squared_18)
Cell 18 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 19 - map

nums_19 = list(range(20))
squared_19 = list(map(lambda x: x ** 2, nums_19))
print("Cell 19 - map")
print("Input:", nums_19)
print("Squared:", squared_19)
Cell 19 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 20 - map

nums_20 = list(range(21))
squared_20 = list(map(lambda x: x ** 2, nums_20))
print("Cell 20 - map")
print("Input:", nums_20)
print("Squared:", squared_20)
Cell 20 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 21 - map

nums_21 = list(range(22))
squared_21 = list(map(lambda x: x ** 2, nums_21))
print("Cell 21 - map")
print("Input:", nums_21)
print("Squared:", squared_21)
Cell 21 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 22 - map

nums_22 = list(range(23))
squared_22 = list(map(lambda x: x ** 2, nums_22))
print("Cell 22 - map")
print("Input:", nums_22)
print("Squared:", squared_22)
Cell 22 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 23 - map

nums_23 = list(range(24))
squared_23 = list(map(lambda x: x ** 2, nums_23))
print("Cell 23 - map")
print("Input:", nums_23)
print("Squared:", squared_23)
Cell 23 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 24 - map

nums_24 = list(range(25))
squared_24 = list(map(lambda x: x ** 2, nums_24))
print("Cell 24 - map")
print("Input:", nums_24)
print("Squared:", squared_24)
Cell 24 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 25 - map

nums_25 = list(range(26))
squared_25 = list(map(lambda x: x ** 2, nums_25))
print("Cell 25 - map")
print("Input:", nums_25)
print("Squared:", squared_25)
Cell 25 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 26 - map

nums_26 = list(range(27))
squared_26 = list(map(lambda x: x ** 2, nums_26))
print("Cell 26 - map")
print("Input:", nums_26)
print("Squared:", squared_26)
Cell 26 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 27 - map

nums_27 = list(range(28))
squared_27 = list(map(lambda x: x ** 2, nums_27))
print("Cell 27 - map")
print("Input:", nums_27)
print("Squared:", squared_27)
Cell 27 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 28 - map

nums_28 = list(range(29))
squared_28 = list(map(lambda x: x ** 2, nums_28))
print("Cell 28 - map")
print("Input:", nums_28)
print("Squared:", squared_28)
Cell 28 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 29 - map

nums_29 = list(range(30))
squared_29 = list(map(lambda x: x ** 2, nums_29))
print("Cell 29 - map")
print("Input:", nums_29)
print("Squared:", squared_29)
Cell 29 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 30 - map

nums_30 = list(range(31))
squared_30 = list(map(lambda x: x ** 2, nums_30))
print("Cell 30 - map")
print("Input:", nums_30)
print("Squared:", squared_30)
Cell 30 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900]
# Cell 31 - map

nums_31 = list(range(32))
squared_31 = list(map(lambda x: x ** 2, nums_31))
print("Cell 31 - map")
print("Input:", nums_31)
print("Squared:", squared_31)
Cell 31 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961]
# Cell 32 - map

nums_32 = list(range(33))
squared_32 = list(map(lambda x: x ** 2, nums_32))
print("Cell 32 - map")
print("Input:", nums_32)
print("Squared:", squared_32)
Cell 32 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024]
# Cell 33 - map

nums_33 = list(range(34))
squared_33 = list(map(lambda x: x ** 2, nums_33))
print("Cell 33 - map")
print("Input:", nums_33)
print("Squared:", squared_33)
Cell 33 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089]
# Cell 34 - map

nums_34 = list(range(35))
squared_34 = list(map(lambda x: x ** 2, nums_34))
print("Cell 34 - map")
print("Input:", nums_34)
print("Squared:", squared_34)
Cell 34 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156]
# Cell 35 - map

nums_35 = list(range(36))
squared_35 = list(map(lambda x: x ** 2, nums_35))
print("Cell 35 - map")
print("Input:", nums_35)
print("Squared:", squared_35)
Cell 35 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225]
# Cell 36 - map

nums_36 = list(range(37))
squared_36 = list(map(lambda x: x ** 2, nums_36))
print("Cell 36 - map")
print("Input:", nums_36)
print("Squared:", squared_36)
Cell 36 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296]
# Cell 37 - map

nums_37 = list(range(38))
squared_37 = list(map(lambda x: x ** 2, nums_37))
print("Cell 37 - map")
print("Input:", nums_37)
print("Squared:", squared_37)
Cell 37 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369]
# Cell 38 - map

nums_38 = list(range(39))
squared_38 = list(map(lambda x: x ** 2, nums_38))
print("Cell 38 - map")
print("Input:", nums_38)
print("Squared:", squared_38)
Cell 38 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444]
# Cell 39 - map

nums_39 = list(range(40))
squared_39 = list(map(lambda x: x ** 2, nums_39))
print("Cell 39 - map")
print("Input:", nums_39)
print("Squared:", squared_39)
Cell 39 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521]
# Cell 40 - map

nums_40 = list(range(41))
squared_40 = list(map(lambda x: x ** 2, nums_40))
print("Cell 40 - map")
print("Input:", nums_40)
print("Squared:", squared_40)
Cell 40 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600]
# Cell 41 - map

nums_41 = list(range(42))
squared_41 = list(map(lambda x: x ** 2, nums_41))
print("Cell 41 - map")
print("Input:", nums_41)
print("Squared:", squared_41)
Cell 41 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681]
# Cell 42 - map

nums_42 = list(range(43))
squared_42 = list(map(lambda x: x ** 2, nums_42))
print("Cell 42 - map")
print("Input:", nums_42)
print("Squared:", squared_42)
Cell 42 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764]
# Cell 43 - map

nums_43 = list(range(44))
squared_43 = list(map(lambda x: x ** 2, nums_43))
print("Cell 43 - map")
print("Input:", nums_43)
print("Squared:", squared_43)
Cell 43 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849]
# Cell 44 - map

nums_44 = list(range(45))
squared_44 = list(map(lambda x: x ** 2, nums_44))
print("Cell 44 - map")
print("Input:", nums_44)
print("Squared:", squared_44)
Cell 44 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936]
# Cell 45 - map

nums_45 = list(range(46))
squared_45 = list(map(lambda x: x ** 2, nums_45))
print("Cell 45 - map")
print("Input:", nums_45)
print("Squared:", squared_45)
Cell 45 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025]
# Cell 46 - map

nums_46 = list(range(47))
squared_46 = list(map(lambda x: x ** 2, nums_46))
print("Cell 46 - map")
print("Input:", nums_46)
print("Squared:", squared_46)
Cell 46 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116]
# Cell 47 - map

nums_47 = list(range(48))
squared_47 = list(map(lambda x: x ** 2, nums_47))
print("Cell 47 - map")
print("Input:", nums_47)
print("Squared:", squared_47)
Cell 47 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209]
# Cell 48 - map

nums_48 = list(range(49))
squared_48 = list(map(lambda x: x ** 2, nums_48))
print("Cell 48 - map")
print("Input:", nums_48)
print("Squared:", squared_48)
Cell 48 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304]
# Cell 49 - map

nums_49 = list(range(50))
squared_49 = list(map(lambda x: x ** 2, nums_49))
print("Cell 49 - map")
print("Input:", nums_49)
print("Squared:", squared_49)
Cell 49 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401]
# Cell 50 - map

nums_50 = list(range(1))
squared_50 = list(map(lambda x: x ** 2, nums_50))
print("Cell 50 - map")
print("Input:", nums_50)
print("Squared:", squared_50)
Cell 50 - map
Input: [0]
Squared: [0]
# Cell 51 - map

nums_51 = list(range(2))
squared_51 = list(map(lambda x: x ** 2, nums_51))
print("Cell 51 - map")
print("Input:", nums_51)
print("Squared:", squared_51)
Cell 51 - map
Input: [0, 1]
Squared: [0, 1]
# Cell 52 - map

nums_52 = list(range(3))
squared_52 = list(map(lambda x: x ** 2, nums_52))
print("Cell 52 - map")
print("Input:", nums_52)
print("Squared:", squared_52)
Cell 52 - map
Input: [0, 1, 2]
Squared: [0, 1, 4]
# Cell 53 - map

nums_53 = list(range(4))
squared_53 = list(map(lambda x: x ** 2, nums_53))
print("Cell 53 - map")
print("Input:", nums_53)
print("Squared:", squared_53)
Cell 53 - map
Input: [0, 1, 2, 3]
Squared: [0, 1, 4, 9]
# Cell 54 - map

nums_54 = list(range(5))
squared_54 = list(map(lambda x: x ** 2, nums_54))
print("Cell 54 - map")
print("Input:", nums_54)
print("Squared:", squared_54)
Cell 54 - map
Input: [0, 1, 2, 3, 4]
Squared: [0, 1, 4, 9, 16]
# Cell 55 - map

nums_55 = list(range(6))
squared_55 = list(map(lambda x: x ** 2, nums_55))
print("Cell 55 - map")
print("Input:", nums_55)
print("Squared:", squared_55)
Cell 55 - map
Input: [0, 1, 2, 3, 4, 5]
Squared: [0, 1, 4, 9, 16, 25]
# Cell 56 - map

nums_56 = list(range(7))
squared_56 = list(map(lambda x: x ** 2, nums_56))
print("Cell 56 - map")
print("Input:", nums_56)
print("Squared:", squared_56)
Cell 56 - map
Input: [0, 1, 2, 3, 4, 5, 6]
Squared: [0, 1, 4, 9, 16, 25, 36]
# Cell 57 - map

nums_57 = list(range(8))
squared_57 = list(map(lambda x: x ** 2, nums_57))
print("Cell 57 - map")
print("Input:", nums_57)
print("Squared:", squared_57)
Cell 57 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7]
Squared: [0, 1, 4, 9, 16, 25, 36, 49]
# Cell 58 - map

nums_58 = list(range(9))
squared_58 = list(map(lambda x: x ** 2, nums_58))
print("Cell 58 - map")
print("Input:", nums_58)
print("Squared:", squared_58)
Cell 58 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 59 - map

nums_59 = list(range(10))
squared_59 = list(map(lambda x: x ** 2, nums_59))
print("Cell 59 - map")
print("Input:", nums_59)
print("Squared:", squared_59)
Cell 59 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 60 - map

nums_60 = list(range(11))
squared_60 = list(map(lambda x: x ** 2, nums_60))
print("Cell 60 - map")
print("Input:", nums_60)
print("Squared:", squared_60)
Cell 60 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 61 - map

nums_61 = list(range(12))
squared_61 = list(map(lambda x: x ** 2, nums_61))
print("Cell 61 - map")
print("Input:", nums_61)
print("Squared:", squared_61)
Cell 61 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 62 - map

nums_62 = list(range(13))
squared_62 = list(map(lambda x: x ** 2, nums_62))
print("Cell 62 - map")
print("Input:", nums_62)
print("Squared:", squared_62)
Cell 62 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 63 - map

nums_63 = list(range(14))
squared_63 = list(map(lambda x: x ** 2, nums_63))
print("Cell 63 - map")
print("Input:", nums_63)
print("Squared:", squared_63)
Cell 63 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 64 - map

nums_64 = list(range(15))
squared_64 = list(map(lambda x: x ** 2, nums_64))
print("Cell 64 - map")
print("Input:", nums_64)
print("Squared:", squared_64)
Cell 64 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 65 - map

nums_65 = list(range(16))
squared_65 = list(map(lambda x: x ** 2, nums_65))
print("Cell 65 - map")
print("Input:", nums_65)
print("Squared:", squared_65)
Cell 65 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 66 - map

nums_66 = list(range(17))
squared_66 = list(map(lambda x: x ** 2, nums_66))
print("Cell 66 - map")
print("Input:", nums_66)
print("Squared:", squared_66)
Cell 66 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 67 - map

nums_67 = list(range(18))
squared_67 = list(map(lambda x: x ** 2, nums_67))
print("Cell 67 - map")
print("Input:", nums_67)
print("Squared:", squared_67)
Cell 67 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 68 - map

nums_68 = list(range(19))
squared_68 = list(map(lambda x: x ** 2, nums_68))
print("Cell 68 - map")
print("Input:", nums_68)
print("Squared:", squared_68)
Cell 68 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 69 - map

nums_69 = list(range(20))
squared_69 = list(map(lambda x: x ** 2, nums_69))
print("Cell 69 - map")
print("Input:", nums_69)
print("Squared:", squared_69)
Cell 69 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 70 - map

nums_70 = list(range(21))
squared_70 = list(map(lambda x: x ** 2, nums_70))
print("Cell 70 - map")
print("Input:", nums_70)
print("Squared:", squared_70)
Cell 70 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 71 - map

nums_71 = list(range(22))
squared_71 = list(map(lambda x: x ** 2, nums_71))
print("Cell 71 - map")
print("Input:", nums_71)
print("Squared:", squared_71)
Cell 71 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 72 - map

nums_72 = list(range(23))
squared_72 = list(map(lambda x: x ** 2, nums_72))
print("Cell 72 - map")
print("Input:", nums_72)
print("Squared:", squared_72)
Cell 72 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 73 - map

nums_73 = list(range(24))
squared_73 = list(map(lambda x: x ** 2, nums_73))
print("Cell 73 - map")
print("Input:", nums_73)
print("Squared:", squared_73)
Cell 73 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 74 - map

nums_74 = list(range(25))
squared_74 = list(map(lambda x: x ** 2, nums_74))
print("Cell 74 - map")
print("Input:", nums_74)
print("Squared:", squared_74)
Cell 74 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 75 - map

nums_75 = list(range(26))
squared_75 = list(map(lambda x: x ** 2, nums_75))
print("Cell 75 - map")
print("Input:", nums_75)
print("Squared:", squared_75)
Cell 75 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 76 - map

nums_76 = list(range(27))
squared_76 = list(map(lambda x: x ** 2, nums_76))
print("Cell 76 - map")
print("Input:", nums_76)
print("Squared:", squared_76)
Cell 76 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 77 - map

nums_77 = list(range(28))
squared_77 = list(map(lambda x: x ** 2, nums_77))
print("Cell 77 - map")
print("Input:", nums_77)
print("Squared:", squared_77)
Cell 77 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 78 - map

nums_78 = list(range(29))
squared_78 = list(map(lambda x: x ** 2, nums_78))
print("Cell 78 - map")
print("Input:", nums_78)
print("Squared:", squared_78)
Cell 78 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 79 - map

nums_79 = list(range(30))
squared_79 = list(map(lambda x: x ** 2, nums_79))
print("Cell 79 - map")
print("Input:", nums_79)
print("Squared:", squared_79)
Cell 79 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 80 - map

nums_80 = list(range(31))
squared_80 = list(map(lambda x: x ** 2, nums_80))
print("Cell 80 - map")
print("Input:", nums_80)
print("Squared:", squared_80)
Cell 80 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900]
# Cell 81 - map

nums_81 = list(range(32))
squared_81 = list(map(lambda x: x ** 2, nums_81))
print("Cell 81 - map")
print("Input:", nums_81)
print("Squared:", squared_81)
Cell 81 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961]
# Cell 82 - map

nums_82 = list(range(33))
squared_82 = list(map(lambda x: x ** 2, nums_82))
print("Cell 82 - map")
print("Input:", nums_82)
print("Squared:", squared_82)
Cell 82 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024]
# Cell 83 - map

nums_83 = list(range(34))
squared_83 = list(map(lambda x: x ** 2, nums_83))
print("Cell 83 - map")
print("Input:", nums_83)
print("Squared:", squared_83)
Cell 83 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089]
# Cell 84 - map

nums_84 = list(range(35))
squared_84 = list(map(lambda x: x ** 2, nums_84))
print("Cell 84 - map")
print("Input:", nums_84)
print("Squared:", squared_84)
Cell 84 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156]
# Cell 85 - map

nums_85 = list(range(36))
squared_85 = list(map(lambda x: x ** 2, nums_85))
print("Cell 85 - map")
print("Input:", nums_85)
print("Squared:", squared_85)
Cell 85 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225]
# Cell 86 - map

nums_86 = list(range(37))
squared_86 = list(map(lambda x: x ** 2, nums_86))
print("Cell 86 - map")
print("Input:", nums_86)
print("Squared:", squared_86)
Cell 86 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296]
# Cell 87 - map

nums_87 = list(range(38))
squared_87 = list(map(lambda x: x ** 2, nums_87))
print("Cell 87 - map")
print("Input:", nums_87)
print("Squared:", squared_87)
Cell 87 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369]
# Cell 88 - map

nums_88 = list(range(39))
squared_88 = list(map(lambda x: x ** 2, nums_88))
print("Cell 88 - map")
print("Input:", nums_88)
print("Squared:", squared_88)
Cell 88 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444]
# Cell 89 - map

nums_89 = list(range(40))
squared_89 = list(map(lambda x: x ** 2, nums_89))
print("Cell 89 - map")
print("Input:", nums_89)
print("Squared:", squared_89)
Cell 89 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521]
# Cell 90 - map

nums_90 = list(range(41))
squared_90 = list(map(lambda x: x ** 2, nums_90))
print("Cell 90 - map")
print("Input:", nums_90)
print("Squared:", squared_90)
Cell 90 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600]
# Cell 91 - map

nums_91 = list(range(42))
squared_91 = list(map(lambda x: x ** 2, nums_91))
print("Cell 91 - map")
print("Input:", nums_91)
print("Squared:", squared_91)
Cell 91 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681]
# Cell 92 - map

nums_92 = list(range(43))
squared_92 = list(map(lambda x: x ** 2, nums_92))
print("Cell 92 - map")
print("Input:", nums_92)
print("Squared:", squared_92)
Cell 92 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764]
# Cell 93 - map

nums_93 = list(range(44))
squared_93 = list(map(lambda x: x ** 2, nums_93))
print("Cell 93 - map")
print("Input:", nums_93)
print("Squared:", squared_93)
Cell 93 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849]
# Cell 94 - map

nums_94 = list(range(45))
squared_94 = list(map(lambda x: x ** 2, nums_94))
print("Cell 94 - map")
print("Input:", nums_94)
print("Squared:", squared_94)
Cell 94 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936]
# Cell 95 - map

nums_95 = list(range(46))
squared_95 = list(map(lambda x: x ** 2, nums_95))
print("Cell 95 - map")
print("Input:", nums_95)
print("Squared:", squared_95)
Cell 95 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025]
# Cell 96 - map

nums_96 = list(range(47))
squared_96 = list(map(lambda x: x ** 2, nums_96))
print("Cell 96 - map")
print("Input:", nums_96)
print("Squared:", squared_96)
Cell 96 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116]
# Cell 97 - map

nums_97 = list(range(48))
squared_97 = list(map(lambda x: x ** 2, nums_97))
print("Cell 97 - map")
print("Input:", nums_97)
print("Squared:", squared_97)
Cell 97 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209]
# Cell 98 - map

nums_98 = list(range(49))
squared_98 = list(map(lambda x: x ** 2, nums_98))
print("Cell 98 - map")
print("Input:", nums_98)
print("Squared:", squared_98)
Cell 98 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304]
# Cell 99 - map

nums_99 = list(range(50))
squared_99 = list(map(lambda x: x ** 2, nums_99))
print("Cell 99 - map")
print("Input:", nums_99)
print("Squared:", squared_99)
Cell 99 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401]
# Cell 100 - map

nums_100 = list(range(1))
squared_100 = list(map(lambda x: x ** 2, nums_100))
print("Cell 100 - map")
print("Input:", nums_100)
print("Squared:", squared_100)
Cell 100 - map
Input: [0]
Squared: [0]
# Cell 101 - map

nums_101 = list(range(2))
squared_101 = list(map(lambda x: x ** 2, nums_101))
print("Cell 101 - map")
print("Input:", nums_101)
print("Squared:", squared_101)
Cell 101 - map
Input: [0, 1]
Squared: [0, 1]
# Cell 102 - map

nums_102 = list(range(3))
squared_102 = list(map(lambda x: x ** 2, nums_102))
print("Cell 102 - map")
print("Input:", nums_102)
print("Squared:", squared_102)
Cell 102 - map
Input: [0, 1, 2]
Squared: [0, 1, 4]
# Cell 103 - map

nums_103 = list(range(4))
squared_103 = list(map(lambda x: x ** 2, nums_103))
print("Cell 103 - map")
print("Input:", nums_103)
print("Squared:", squared_103)
Cell 103 - map
Input: [0, 1, 2, 3]
Squared: [0, 1, 4, 9]
# Cell 104 - map

nums_104 = list(range(5))
squared_104 = list(map(lambda x: x ** 2, nums_104))
print("Cell 104 - map")
print("Input:", nums_104)
print("Squared:", squared_104)
Cell 104 - map
Input: [0, 1, 2, 3, 4]
Squared: [0, 1, 4, 9, 16]
# Cell 105 - map

nums_105 = list(range(6))
squared_105 = list(map(lambda x: x ** 2, nums_105))
print("Cell 105 - map")
print("Input:", nums_105)
print("Squared:", squared_105)
Cell 105 - map
Input: [0, 1, 2, 3, 4, 5]
Squared: [0, 1, 4, 9, 16, 25]
# Cell 106 - map

nums_106 = list(range(7))
squared_106 = list(map(lambda x: x ** 2, nums_106))
print("Cell 106 - map")
print("Input:", nums_106)
print("Squared:", squared_106)
Cell 106 - map
Input: [0, 1, 2, 3, 4, 5, 6]
Squared: [0, 1, 4, 9, 16, 25, 36]
# Cell 107 - map

nums_107 = list(range(8))
squared_107 = list(map(lambda x: x ** 2, nums_107))
print("Cell 107 - map")
print("Input:", nums_107)
print("Squared:", squared_107)
Cell 107 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7]
Squared: [0, 1, 4, 9, 16, 25, 36, 49]
# Cell 108 - map

nums_108 = list(range(9))
squared_108 = list(map(lambda x: x ** 2, nums_108))
print("Cell 108 - map")
print("Input:", nums_108)
print("Squared:", squared_108)
Cell 108 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 109 - map

nums_109 = list(range(10))
squared_109 = list(map(lambda x: x ** 2, nums_109))
print("Cell 109 - map")
print("Input:", nums_109)
print("Squared:", squared_109)
Cell 109 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 110 - map

nums_110 = list(range(11))
squared_110 = list(map(lambda x: x ** 2, nums_110))
print("Cell 110 - map")
print("Input:", nums_110)
print("Squared:", squared_110)
Cell 110 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 111 - map

nums_111 = list(range(12))
squared_111 = list(map(lambda x: x ** 2, nums_111))
print("Cell 111 - map")
print("Input:", nums_111)
print("Squared:", squared_111)
Cell 111 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 112 - map

nums_112 = list(range(13))
squared_112 = list(map(lambda x: x ** 2, nums_112))
print("Cell 112 - map")
print("Input:", nums_112)
print("Squared:", squared_112)
Cell 112 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 113 - map

nums_113 = list(range(14))
squared_113 = list(map(lambda x: x ** 2, nums_113))
print("Cell 113 - map")
print("Input:", nums_113)
print("Squared:", squared_113)
Cell 113 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 114 - map

nums_114 = list(range(15))
squared_114 = list(map(lambda x: x ** 2, nums_114))
print("Cell 114 - map")
print("Input:", nums_114)
print("Squared:", squared_114)
Cell 114 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 115 - map

nums_115 = list(range(16))
squared_115 = list(map(lambda x: x ** 2, nums_115))
print("Cell 115 - map")
print("Input:", nums_115)
print("Squared:", squared_115)
Cell 115 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 116 - map

nums_116 = list(range(17))
squared_116 = list(map(lambda x: x ** 2, nums_116))
print("Cell 116 - map")
print("Input:", nums_116)
print("Squared:", squared_116)
Cell 116 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 117 - map

nums_117 = list(range(18))
squared_117 = list(map(lambda x: x ** 2, nums_117))
print("Cell 117 - map")
print("Input:", nums_117)
print("Squared:", squared_117)
Cell 117 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 118 - map

nums_118 = list(range(19))
squared_118 = list(map(lambda x: x ** 2, nums_118))
print("Cell 118 - map")
print("Input:", nums_118)
print("Squared:", squared_118)
Cell 118 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 119 - map

nums_119 = list(range(20))
squared_119 = list(map(lambda x: x ** 2, nums_119))
print("Cell 119 - map")
print("Input:", nums_119)
print("Squared:", squared_119)
Cell 119 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 120 - map

nums_120 = list(range(21))
squared_120 = list(map(lambda x: x ** 2, nums_120))
print("Cell 120 - map")
print("Input:", nums_120)
print("Squared:", squared_120)
Cell 120 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 121 - map

nums_121 = list(range(22))
squared_121 = list(map(lambda x: x ** 2, nums_121))
print("Cell 121 - map")
print("Input:", nums_121)
print("Squared:", squared_121)
Cell 121 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 122 - map

nums_122 = list(range(23))
squared_122 = list(map(lambda x: x ** 2, nums_122))
print("Cell 122 - map")
print("Input:", nums_122)
print("Squared:", squared_122)
Cell 122 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 123 - map

nums_123 = list(range(24))
squared_123 = list(map(lambda x: x ** 2, nums_123))
print("Cell 123 - map")
print("Input:", nums_123)
print("Squared:", squared_123)
Cell 123 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 124 - map

nums_124 = list(range(25))
squared_124 = list(map(lambda x: x ** 2, nums_124))
print("Cell 124 - map")
print("Input:", nums_124)
print("Squared:", squared_124)
Cell 124 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 125 - map

nums_125 = list(range(26))
squared_125 = list(map(lambda x: x ** 2, nums_125))
print("Cell 125 - map")
print("Input:", nums_125)
print("Squared:", squared_125)
Cell 125 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 126 - map

nums_126 = list(range(27))
squared_126 = list(map(lambda x: x ** 2, nums_126))
print("Cell 126 - map")
print("Input:", nums_126)
print("Squared:", squared_126)
Cell 126 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 127 - map

nums_127 = list(range(28))
squared_127 = list(map(lambda x: x ** 2, nums_127))
print("Cell 127 - map")
print("Input:", nums_127)
print("Squared:", squared_127)
Cell 127 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 128 - map

nums_128 = list(range(29))
squared_128 = list(map(lambda x: x ** 2, nums_128))
print("Cell 128 - map")
print("Input:", nums_128)
print("Squared:", squared_128)
Cell 128 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 129 - map

nums_129 = list(range(30))
squared_129 = list(map(lambda x: x ** 2, nums_129))
print("Cell 129 - map")
print("Input:", nums_129)
print("Squared:", squared_129)
Cell 129 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 130 - map

nums_130 = list(range(31))
squared_130 = list(map(lambda x: x ** 2, nums_130))
print("Cell 130 - map")
print("Input:", nums_130)
print("Squared:", squared_130)
Cell 130 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900]
# Cell 131 - map

nums_131 = list(range(32))
squared_131 = list(map(lambda x: x ** 2, nums_131))
print("Cell 131 - map")
print("Input:", nums_131)
print("Squared:", squared_131)
Cell 131 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961]
# Cell 132 - map

nums_132 = list(range(33))
squared_132 = list(map(lambda x: x ** 2, nums_132))
print("Cell 132 - map")
print("Input:", nums_132)
print("Squared:", squared_132)
Cell 132 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024]
# Cell 133 - map

nums_133 = list(range(34))
squared_133 = list(map(lambda x: x ** 2, nums_133))
print("Cell 133 - map")
print("Input:", nums_133)
print("Squared:", squared_133)
Cell 133 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089]
# Cell 134 - map

nums_134 = list(range(35))
squared_134 = list(map(lambda x: x ** 2, nums_134))
print("Cell 134 - map")
print("Input:", nums_134)
print("Squared:", squared_134)
Cell 134 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156]
# Cell 135 - map

nums_135 = list(range(36))
squared_135 = list(map(lambda x: x ** 2, nums_135))
print("Cell 135 - map")
print("Input:", nums_135)
print("Squared:", squared_135)
Cell 135 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225]
# Cell 136 - map

nums_136 = list(range(37))
squared_136 = list(map(lambda x: x ** 2, nums_136))
print("Cell 136 - map")
print("Input:", nums_136)
print("Squared:", squared_136)
Cell 136 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296]
# Cell 137 - map

nums_137 = list(range(38))
squared_137 = list(map(lambda x: x ** 2, nums_137))
print("Cell 137 - map")
print("Input:", nums_137)
print("Squared:", squared_137)
Cell 137 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369]
# Cell 138 - map

nums_138 = list(range(39))
squared_138 = list(map(lambda x: x ** 2, nums_138))
print("Cell 138 - map")
print("Input:", nums_138)
print("Squared:", squared_138)
Cell 138 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444]
# Cell 139 - map

nums_139 = list(range(40))
squared_139 = list(map(lambda x: x ** 2, nums_139))
print("Cell 139 - map")
print("Input:", nums_139)
print("Squared:", squared_139)
Cell 139 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521]
# Cell 140 - map

nums_140 = list(range(41))
squared_140 = list(map(lambda x: x ** 2, nums_140))
print("Cell 140 - map")
print("Input:", nums_140)
print("Squared:", squared_140)
Cell 140 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600]
# Cell 141 - map

nums_141 = list(range(42))
squared_141 = list(map(lambda x: x ** 2, nums_141))
print("Cell 141 - map")
print("Input:", nums_141)
print("Squared:", squared_141)
Cell 141 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681]
# Cell 142 - map

nums_142 = list(range(43))
squared_142 = list(map(lambda x: x ** 2, nums_142))
print("Cell 142 - map")
print("Input:", nums_142)
print("Squared:", squared_142)
Cell 142 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764]
# Cell 143 - map

nums_143 = list(range(44))
squared_143 = list(map(lambda x: x ** 2, nums_143))
print("Cell 143 - map")
print("Input:", nums_143)
print("Squared:", squared_143)
Cell 143 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849]
# Cell 144 - map

nums_144 = list(range(45))
squared_144 = list(map(lambda x: x ** 2, nums_144))
print("Cell 144 - map")
print("Input:", nums_144)
print("Squared:", squared_144)
Cell 144 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936]
# Cell 145 - map

nums_145 = list(range(46))
squared_145 = list(map(lambda x: x ** 2, nums_145))
print("Cell 145 - map")
print("Input:", nums_145)
print("Squared:", squared_145)
Cell 145 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025]
# Cell 146 - map

nums_146 = list(range(47))
squared_146 = list(map(lambda x: x ** 2, nums_146))
print("Cell 146 - map")
print("Input:", nums_146)
print("Squared:", squared_146)
Cell 146 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116]
# Cell 147 - map

nums_147 = list(range(48))
squared_147 = list(map(lambda x: x ** 2, nums_147))
print("Cell 147 - map")
print("Input:", nums_147)
print("Squared:", squared_147)
Cell 147 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209]
# Cell 148 - map

nums_148 = list(range(49))
squared_148 = list(map(lambda x: x ** 2, nums_148))
print("Cell 148 - map")
print("Input:", nums_148)
print("Squared:", squared_148)
Cell 148 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304]
# Cell 149 - map

nums_149 = list(range(50))
squared_149 = list(map(lambda x: x ** 2, nums_149))
print("Cell 149 - map")
print("Input:", nums_149)
print("Squared:", squared_149)
Cell 149 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401]
# Cell 150 - map

nums_150 = list(range(1))
squared_150 = list(map(lambda x: x ** 2, nums_150))
print("Cell 150 - map")
print("Input:", nums_150)
print("Squared:", squared_150)
Cell 150 - map
Input: [0]
Squared: [0]
# Cell 151 - map

nums_151 = list(range(2))
squared_151 = list(map(lambda x: x ** 2, nums_151))
print("Cell 151 - map")
print("Input:", nums_151)
print("Squared:", squared_151)
Cell 151 - map
Input: [0, 1]
Squared: [0, 1]
# Cell 152 - map

nums_152 = list(range(3))
squared_152 = list(map(lambda x: x ** 2, nums_152))
print("Cell 152 - map")
print("Input:", nums_152)
print("Squared:", squared_152)
Cell 152 - map
Input: [0, 1, 2]
Squared: [0, 1, 4]
# Cell 153 - map

nums_153 = list(range(4))
squared_153 = list(map(lambda x: x ** 2, nums_153))
print("Cell 153 - map")
print("Input:", nums_153)
print("Squared:", squared_153)
Cell 153 - map
Input: [0, 1, 2, 3]
Squared: [0, 1, 4, 9]
# Cell 154 - map

nums_154 = list(range(5))
squared_154 = list(map(lambda x: x ** 2, nums_154))
print("Cell 154 - map")
print("Input:", nums_154)
print("Squared:", squared_154)
Cell 154 - map
Input: [0, 1, 2, 3, 4]
Squared: [0, 1, 4, 9, 16]
# Cell 155 - map

nums_155 = list(range(6))
squared_155 = list(map(lambda x: x ** 2, nums_155))
print("Cell 155 - map")
print("Input:", nums_155)
print("Squared:", squared_155)
Cell 155 - map
Input: [0, 1, 2, 3, 4, 5]
Squared: [0, 1, 4, 9, 16, 25]
# Cell 156 - map

nums_156 = list(range(7))
squared_156 = list(map(lambda x: x ** 2, nums_156))
print("Cell 156 - map")
print("Input:", nums_156)
print("Squared:", squared_156)
Cell 156 - map
Input: [0, 1, 2, 3, 4, 5, 6]
Squared: [0, 1, 4, 9, 16, 25, 36]
# Cell 157 - map

nums_157 = list(range(8))
squared_157 = list(map(lambda x: x ** 2, nums_157))
print("Cell 157 - map")
print("Input:", nums_157)
print("Squared:", squared_157)
Cell 157 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7]
Squared: [0, 1, 4, 9, 16, 25, 36, 49]
# Cell 158 - map

nums_158 = list(range(9))
squared_158 = list(map(lambda x: x ** 2, nums_158))
print("Cell 158 - map")
print("Input:", nums_158)
print("Squared:", squared_158)
Cell 158 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 159 - map

nums_159 = list(range(10))
squared_159 = list(map(lambda x: x ** 2, nums_159))
print("Cell 159 - map")
print("Input:", nums_159)
print("Squared:", squared_159)
Cell 159 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 160 - map

nums_160 = list(range(11))
squared_160 = list(map(lambda x: x ** 2, nums_160))
print("Cell 160 - map")
print("Input:", nums_160)
print("Squared:", squared_160)
Cell 160 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 161 - map

nums_161 = list(range(12))
squared_161 = list(map(lambda x: x ** 2, nums_161))
print("Cell 161 - map")
print("Input:", nums_161)
print("Squared:", squared_161)
Cell 161 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 162 - map

nums_162 = list(range(13))
squared_162 = list(map(lambda x: x ** 2, nums_162))
print("Cell 162 - map")
print("Input:", nums_162)
print("Squared:", squared_162)
Cell 162 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 163 - map

nums_163 = list(range(14))
squared_163 = list(map(lambda x: x ** 2, nums_163))
print("Cell 163 - map")
print("Input:", nums_163)
print("Squared:", squared_163)
Cell 163 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 164 - map

nums_164 = list(range(15))
squared_164 = list(map(lambda x: x ** 2, nums_164))
print("Cell 164 - map")
print("Input:", nums_164)
print("Squared:", squared_164)
Cell 164 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 165 - map

nums_165 = list(range(16))
squared_165 = list(map(lambda x: x ** 2, nums_165))
print("Cell 165 - map")
print("Input:", nums_165)
print("Squared:", squared_165)
Cell 165 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 166 - map

nums_166 = list(range(17))
squared_166 = list(map(lambda x: x ** 2, nums_166))
print("Cell 166 - map")
print("Input:", nums_166)
print("Squared:", squared_166)
Cell 166 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 167 - map

nums_167 = list(range(18))
squared_167 = list(map(lambda x: x ** 2, nums_167))
print("Cell 167 - map")
print("Input:", nums_167)
print("Squared:", squared_167)
Cell 167 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 168 - map

nums_168 = list(range(19))
squared_168 = list(map(lambda x: x ** 2, nums_168))
print("Cell 168 - map")
print("Input:", nums_168)
print("Squared:", squared_168)
Cell 168 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 169 - map

nums_169 = list(range(20))
squared_169 = list(map(lambda x: x ** 2, nums_169))
print("Cell 169 - map")
print("Input:", nums_169)
print("Squared:", squared_169)
Cell 169 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 170 - map

nums_170 = list(range(21))
squared_170 = list(map(lambda x: x ** 2, nums_170))
print("Cell 170 - map")
print("Input:", nums_170)
print("Squared:", squared_170)
Cell 170 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 171 - map

nums_171 = list(range(22))
squared_171 = list(map(lambda x: x ** 2, nums_171))
print("Cell 171 - map")
print("Input:", nums_171)
print("Squared:", squared_171)
Cell 171 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 172 - map

nums_172 = list(range(23))
squared_172 = list(map(lambda x: x ** 2, nums_172))
print("Cell 172 - map")
print("Input:", nums_172)
print("Squared:", squared_172)
Cell 172 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 173 - map

nums_173 = list(range(24))
squared_173 = list(map(lambda x: x ** 2, nums_173))
print("Cell 173 - map")
print("Input:", nums_173)
print("Squared:", squared_173)
Cell 173 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 174 - map

nums_174 = list(range(25))
squared_174 = list(map(lambda x: x ** 2, nums_174))
print("Cell 174 - map")
print("Input:", nums_174)
print("Squared:", squared_174)
Cell 174 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 175 - map

nums_175 = list(range(26))
squared_175 = list(map(lambda x: x ** 2, nums_175))
print("Cell 175 - map")
print("Input:", nums_175)
print("Squared:", squared_175)
Cell 175 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 176 - map

nums_176 = list(range(27))
squared_176 = list(map(lambda x: x ** 2, nums_176))
print("Cell 176 - map")
print("Input:", nums_176)
print("Squared:", squared_176)
Cell 176 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 177 - map

nums_177 = list(range(28))
squared_177 = list(map(lambda x: x ** 2, nums_177))
print("Cell 177 - map")
print("Input:", nums_177)
print("Squared:", squared_177)
Cell 177 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 178 - map

nums_178 = list(range(29))
squared_178 = list(map(lambda x: x ** 2, nums_178))
print("Cell 178 - map")
print("Input:", nums_178)
print("Squared:", squared_178)
Cell 178 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 179 - map

nums_179 = list(range(30))
squared_179 = list(map(lambda x: x ** 2, nums_179))
print("Cell 179 - map")
print("Input:", nums_179)
print("Squared:", squared_179)
Cell 179 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 180 - map

nums_180 = list(range(31))
squared_180 = list(map(lambda x: x ** 2, nums_180))
print("Cell 180 - map")
print("Input:", nums_180)
print("Squared:", squared_180)
Cell 180 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900]
# Cell 181 - map

nums_181 = list(range(32))
squared_181 = list(map(lambda x: x ** 2, nums_181))
print("Cell 181 - map")
print("Input:", nums_181)
print("Squared:", squared_181)
Cell 181 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961]
# Cell 182 - map

nums_182 = list(range(33))
squared_182 = list(map(lambda x: x ** 2, nums_182))
print("Cell 182 - map")
print("Input:", nums_182)
print("Squared:", squared_182)
Cell 182 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024]
# Cell 183 - map

nums_183 = list(range(34))
squared_183 = list(map(lambda x: x ** 2, nums_183))
print("Cell 183 - map")
print("Input:", nums_183)
print("Squared:", squared_183)
Cell 183 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089]
# Cell 184 - map

nums_184 = list(range(35))
squared_184 = list(map(lambda x: x ** 2, nums_184))
print("Cell 184 - map")
print("Input:", nums_184)
print("Squared:", squared_184)
Cell 184 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156]
# Cell 185 - map

nums_185 = list(range(36))
squared_185 = list(map(lambda x: x ** 2, nums_185))
print("Cell 185 - map")
print("Input:", nums_185)
print("Squared:", squared_185)
Cell 185 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225]
# Cell 186 - map

nums_186 = list(range(37))
squared_186 = list(map(lambda x: x ** 2, nums_186))
print("Cell 186 - map")
print("Input:", nums_186)
print("Squared:", squared_186)
Cell 186 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296]
# Cell 187 - map

nums_187 = list(range(38))
squared_187 = list(map(lambda x: x ** 2, nums_187))
print("Cell 187 - map")
print("Input:", nums_187)
print("Squared:", squared_187)
Cell 187 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369]
# Cell 188 - map

nums_188 = list(range(39))
squared_188 = list(map(lambda x: x ** 2, nums_188))
print("Cell 188 - map")
print("Input:", nums_188)
print("Squared:", squared_188)
Cell 188 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444]
# Cell 189 - map

nums_189 = list(range(40))
squared_189 = list(map(lambda x: x ** 2, nums_189))
print("Cell 189 - map")
print("Input:", nums_189)
print("Squared:", squared_189)
Cell 189 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521]
# Cell 190 - map

nums_190 = list(range(41))
squared_190 = list(map(lambda x: x ** 2, nums_190))
print("Cell 190 - map")
print("Input:", nums_190)
print("Squared:", squared_190)
Cell 190 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600]
# Cell 191 - map

nums_191 = list(range(42))
squared_191 = list(map(lambda x: x ** 2, nums_191))
print("Cell 191 - map")
print("Input:", nums_191)
print("Squared:", squared_191)
Cell 191 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681]
# Cell 192 - map

nums_192 = list(range(43))
squared_192 = list(map(lambda x: x ** 2, nums_192))
print("Cell 192 - map")
print("Input:", nums_192)
print("Squared:", squared_192)
Cell 192 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764]
# Cell 193 - map

nums_193 = list(range(44))
squared_193 = list(map(lambda x: x ** 2, nums_193))
print("Cell 193 - map")
print("Input:", nums_193)
print("Squared:", squared_193)
Cell 193 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849]
# Cell 194 - map

nums_194 = list(range(45))
squared_194 = list(map(lambda x: x ** 2, nums_194))
print("Cell 194 - map")
print("Input:", nums_194)
print("Squared:", squared_194)
Cell 194 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936]
# Cell 195 - map

nums_195 = list(range(46))
squared_195 = list(map(lambda x: x ** 2, nums_195))
print("Cell 195 - map")
print("Input:", nums_195)
print("Squared:", squared_195)
Cell 195 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025]
# Cell 196 - map

nums_196 = list(range(47))
squared_196 = list(map(lambda x: x ** 2, nums_196))
print("Cell 196 - map")
print("Input:", nums_196)
print("Squared:", squared_196)
Cell 196 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116]
# Cell 197 - map

nums_197 = list(range(48))
squared_197 = list(map(lambda x: x ** 2, nums_197))
print("Cell 197 - map")
print("Input:", nums_197)
print("Squared:", squared_197)
Cell 197 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209]
# Cell 198 - map

nums_198 = list(range(49))
squared_198 = list(map(lambda x: x ** 2, nums_198))
print("Cell 198 - map")
print("Input:", nums_198)
print("Squared:", squared_198)
Cell 198 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304]
# Cell 199 - map

nums_199 = list(range(50))
squared_199 = list(map(lambda x: x ** 2, nums_199))
print("Cell 199 - map")
print("Input:", nums_199)
print("Squared:", squared_199)
Cell 199 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401]
# Cell 200 - map

nums_200 = list(range(1))
squared_200 = list(map(lambda x: x ** 2, nums_200))
print("Cell 200 - map")
print("Input:", nums_200)
print("Squared:", squared_200)
Cell 200 - map
Input: [0]
Squared: [0]
# Cell 201 - map

nums_201 = list(range(2))
squared_201 = list(map(lambda x: x ** 2, nums_201))
print("Cell 201 - map")
print("Input:", nums_201)
print("Squared:", squared_201)
Cell 201 - map
Input: [0, 1]
Squared: [0, 1]
# Cell 202 - map

nums_202 = list(range(3))
squared_202 = list(map(lambda x: x ** 2, nums_202))
print("Cell 202 - map")
print("Input:", nums_202)
print("Squared:", squared_202)
Cell 202 - map
Input: [0, 1, 2]
Squared: [0, 1, 4]
# Cell 203 - map

nums_203 = list(range(4))
squared_203 = list(map(lambda x: x ** 2, nums_203))
print("Cell 203 - map")
print("Input:", nums_203)
print("Squared:", squared_203)
Cell 203 - map
Input: [0, 1, 2, 3]
Squared: [0, 1, 4, 9]
# Cell 204 - map

nums_204 = list(range(5))
squared_204 = list(map(lambda x: x ** 2, nums_204))
print("Cell 204 - map")
print("Input:", nums_204)
print("Squared:", squared_204)
Cell 204 - map
Input: [0, 1, 2, 3, 4]
Squared: [0, 1, 4, 9, 16]
# Cell 205 - map

nums_205 = list(range(6))
squared_205 = list(map(lambda x: x ** 2, nums_205))
print("Cell 205 - map")
print("Input:", nums_205)
print("Squared:", squared_205)
Cell 205 - map
Input: [0, 1, 2, 3, 4, 5]
Squared: [0, 1, 4, 9, 16, 25]
# Cell 206 - map

nums_206 = list(range(7))
squared_206 = list(map(lambda x: x ** 2, nums_206))
print("Cell 206 - map")
print("Input:", nums_206)
print("Squared:", squared_206)
Cell 206 - map
Input: [0, 1, 2, 3, 4, 5, 6]
Squared: [0, 1, 4, 9, 16, 25, 36]
# Cell 207 - map

nums_207 = list(range(8))
squared_207 = list(map(lambda x: x ** 2, nums_207))
print("Cell 207 - map")
print("Input:", nums_207)
print("Squared:", squared_207)
Cell 207 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7]
Squared: [0, 1, 4, 9, 16, 25, 36, 49]
# Cell 208 - map

nums_208 = list(range(9))
squared_208 = list(map(lambda x: x ** 2, nums_208))
print("Cell 208 - map")
print("Input:", nums_208)
print("Squared:", squared_208)
Cell 208 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 209 - map

nums_209 = list(range(10))
squared_209 = list(map(lambda x: x ** 2, nums_209))
print("Cell 209 - map")
print("Input:", nums_209)
print("Squared:", squared_209)
Cell 209 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 210 - map

nums_210 = list(range(11))
squared_210 = list(map(lambda x: x ** 2, nums_210))
print("Cell 210 - map")
print("Input:", nums_210)
print("Squared:", squared_210)
Cell 210 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 211 - map

nums_211 = list(range(12))
squared_211 = list(map(lambda x: x ** 2, nums_211))
print("Cell 211 - map")
print("Input:", nums_211)
print("Squared:", squared_211)
Cell 211 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 212 - map

nums_212 = list(range(13))
squared_212 = list(map(lambda x: x ** 2, nums_212))
print("Cell 212 - map")
print("Input:", nums_212)
print("Squared:", squared_212)
Cell 212 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 213 - map

nums_213 = list(range(14))
squared_213 = list(map(lambda x: x ** 2, nums_213))
print("Cell 213 - map")
print("Input:", nums_213)
print("Squared:", squared_213)
Cell 213 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 214 - map

nums_214 = list(range(15))
squared_214 = list(map(lambda x: x ** 2, nums_214))
print("Cell 214 - map")
print("Input:", nums_214)
print("Squared:", squared_214)
Cell 214 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 215 - map

nums_215 = list(range(16))
squared_215 = list(map(lambda x: x ** 2, nums_215))
print("Cell 215 - map")
print("Input:", nums_215)
print("Squared:", squared_215)
Cell 215 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 216 - map

nums_216 = list(range(17))
squared_216 = list(map(lambda x: x ** 2, nums_216))
print("Cell 216 - map")
print("Input:", nums_216)
print("Squared:", squared_216)
Cell 216 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 217 - map

nums_217 = list(range(18))
squared_217 = list(map(lambda x: x ** 2, nums_217))
print("Cell 217 - map")
print("Input:", nums_217)
print("Squared:", squared_217)
Cell 217 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 218 - map

nums_218 = list(range(19))
squared_218 = list(map(lambda x: x ** 2, nums_218))
print("Cell 218 - map")
print("Input:", nums_218)
print("Squared:", squared_218)
Cell 218 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 219 - map

nums_219 = list(range(20))
squared_219 = list(map(lambda x: x ** 2, nums_219))
print("Cell 219 - map")
print("Input:", nums_219)
print("Squared:", squared_219)
Cell 219 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 220 - map

nums_220 = list(range(21))
squared_220 = list(map(lambda x: x ** 2, nums_220))
print("Cell 220 - map")
print("Input:", nums_220)
print("Squared:", squared_220)
Cell 220 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 221 - map

nums_221 = list(range(22))
squared_221 = list(map(lambda x: x ** 2, nums_221))
print("Cell 221 - map")
print("Input:", nums_221)
print("Squared:", squared_221)
Cell 221 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 222 - map

nums_222 = list(range(23))
squared_222 = list(map(lambda x: x ** 2, nums_222))
print("Cell 222 - map")
print("Input:", nums_222)
print("Squared:", squared_222)
Cell 222 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 223 - map

nums_223 = list(range(24))
squared_223 = list(map(lambda x: x ** 2, nums_223))
print("Cell 223 - map")
print("Input:", nums_223)
print("Squared:", squared_223)
Cell 223 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 224 - map

nums_224 = list(range(25))
squared_224 = list(map(lambda x: x ** 2, nums_224))
print("Cell 224 - map")
print("Input:", nums_224)
print("Squared:", squared_224)
Cell 224 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 225 - map

nums_225 = list(range(26))
squared_225 = list(map(lambda x: x ** 2, nums_225))
print("Cell 225 - map")
print("Input:", nums_225)
print("Squared:", squared_225)
Cell 225 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 226 - map

nums_226 = list(range(27))
squared_226 = list(map(lambda x: x ** 2, nums_226))
print("Cell 226 - map")
print("Input:", nums_226)
print("Squared:", squared_226)
Cell 226 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 227 - map

nums_227 = list(range(28))
squared_227 = list(map(lambda x: x ** 2, nums_227))
print("Cell 227 - map")
print("Input:", nums_227)
print("Squared:", squared_227)
Cell 227 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 228 - map

nums_228 = list(range(29))
squared_228 = list(map(lambda x: x ** 2, nums_228))
print("Cell 228 - map")
print("Input:", nums_228)
print("Squared:", squared_228)
Cell 228 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 229 - map

nums_229 = list(range(30))
squared_229 = list(map(lambda x: x ** 2, nums_229))
print("Cell 229 - map")
print("Input:", nums_229)
print("Squared:", squared_229)
Cell 229 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 230 - map

nums_230 = list(range(31))
squared_230 = list(map(lambda x: x ** 2, nums_230))
print("Cell 230 - map")
print("Input:", nums_230)
print("Squared:", squared_230)
Cell 230 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900]
# Cell 231 - map

nums_231 = list(range(32))
squared_231 = list(map(lambda x: x ** 2, nums_231))
print("Cell 231 - map")
print("Input:", nums_231)
print("Squared:", squared_231)
Cell 231 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961]
# Cell 232 - map

nums_232 = list(range(33))
squared_232 = list(map(lambda x: x ** 2, nums_232))
print("Cell 232 - map")
print("Input:", nums_232)
print("Squared:", squared_232)
Cell 232 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024]
# Cell 233 - map

nums_233 = list(range(34))
squared_233 = list(map(lambda x: x ** 2, nums_233))
print("Cell 233 - map")
print("Input:", nums_233)
print("Squared:", squared_233)
Cell 233 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089]
# Cell 234 - map

nums_234 = list(range(35))
squared_234 = list(map(lambda x: x ** 2, nums_234))
print("Cell 234 - map")
print("Input:", nums_234)
print("Squared:", squared_234)
Cell 234 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156]
# Cell 235 - map

nums_235 = list(range(36))
squared_235 = list(map(lambda x: x ** 2, nums_235))
print("Cell 235 - map")
print("Input:", nums_235)
print("Squared:", squared_235)
Cell 235 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225]
# Cell 236 - map

nums_236 = list(range(37))
squared_236 = list(map(lambda x: x ** 2, nums_236))
print("Cell 236 - map")
print("Input:", nums_236)
print("Squared:", squared_236)
Cell 236 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296]
# Cell 237 - map

nums_237 = list(range(38))
squared_237 = list(map(lambda x: x ** 2, nums_237))
print("Cell 237 - map")
print("Input:", nums_237)
print("Squared:", squared_237)
Cell 237 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369]
# Cell 238 - map

nums_238 = list(range(39))
squared_238 = list(map(lambda x: x ** 2, nums_238))
print("Cell 238 - map")
print("Input:", nums_238)
print("Squared:", squared_238)
Cell 238 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444]
# Cell 239 - map

nums_239 = list(range(40))
squared_239 = list(map(lambda x: x ** 2, nums_239))
print("Cell 239 - map")
print("Input:", nums_239)
print("Squared:", squared_239)
Cell 239 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521]
# Cell 240 - map

nums_240 = list(range(41))
squared_240 = list(map(lambda x: x ** 2, nums_240))
print("Cell 240 - map")
print("Input:", nums_240)
print("Squared:", squared_240)
Cell 240 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600]
# Cell 241 - map

nums_241 = list(range(42))
squared_241 = list(map(lambda x: x ** 2, nums_241))
print("Cell 241 - map")
print("Input:", nums_241)
print("Squared:", squared_241)
Cell 241 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681]
# Cell 242 - map

nums_242 = list(range(43))
squared_242 = list(map(lambda x: x ** 2, nums_242))
print("Cell 242 - map")
print("Input:", nums_242)
print("Squared:", squared_242)
Cell 242 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764]
# Cell 243 - map

nums_243 = list(range(44))
squared_243 = list(map(lambda x: x ** 2, nums_243))
print("Cell 243 - map")
print("Input:", nums_243)
print("Squared:", squared_243)
Cell 243 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849]
# Cell 244 - map

nums_244 = list(range(45))
squared_244 = list(map(lambda x: x ** 2, nums_244))
print("Cell 244 - map")
print("Input:", nums_244)
print("Squared:", squared_244)
Cell 244 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936]
# Cell 245 - map

nums_245 = list(range(46))
squared_245 = list(map(lambda x: x ** 2, nums_245))
print("Cell 245 - map")
print("Input:", nums_245)
print("Squared:", squared_245)
Cell 245 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025]
# Cell 246 - map

nums_246 = list(range(47))
squared_246 = list(map(lambda x: x ** 2, nums_246))
print("Cell 246 - map")
print("Input:", nums_246)
print("Squared:", squared_246)
Cell 246 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116]
# Cell 247 - map

nums_247 = list(range(48))
squared_247 = list(map(lambda x: x ** 2, nums_247))
print("Cell 247 - map")
print("Input:", nums_247)
print("Squared:", squared_247)
Cell 247 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209]
# Cell 248 - map

nums_248 = list(range(49))
squared_248 = list(map(lambda x: x ** 2, nums_248))
print("Cell 248 - map")
print("Input:", nums_248)
print("Squared:", squared_248)
Cell 248 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304]
# Cell 249 - map

nums_249 = list(range(50))
squared_249 = list(map(lambda x: x ** 2, nums_249))
print("Cell 249 - map")
print("Input:", nums_249)
print("Squared:", squared_249)
Cell 249 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401]
# Cell 250 - map

nums_250 = list(range(1))
squared_250 = list(map(lambda x: x ** 2, nums_250))
print("Cell 250 - map")
print("Input:", nums_250)
print("Squared:", squared_250)
Cell 250 - map
Input: [0]
Squared: [0]
# Cell 251 - map

nums_251 = list(range(2))
squared_251 = list(map(lambda x: x ** 2, nums_251))
print("Cell 251 - map")
print("Input:", nums_251)
print("Squared:", squared_251)
Cell 251 - map
Input: [0, 1]
Squared: [0, 1]
# Cell 252 - map

nums_252 = list(range(3))
squared_252 = list(map(lambda x: x ** 2, nums_252))
print("Cell 252 - map")
print("Input:", nums_252)
print("Squared:", squared_252)
Cell 252 - map
Input: [0, 1, 2]
Squared: [0, 1, 4]
# Cell 253 - map

nums_253 = list(range(4))
squared_253 = list(map(lambda x: x ** 2, nums_253))
print("Cell 253 - map")
print("Input:", nums_253)
print("Squared:", squared_253)
Cell 253 - map
Input: [0, 1, 2, 3]
Squared: [0, 1, 4, 9]
# Cell 254 - map

nums_254 = list(range(5))
squared_254 = list(map(lambda x: x ** 2, nums_254))
print("Cell 254 - map")
print("Input:", nums_254)
print("Squared:", squared_254)
Cell 254 - map
Input: [0, 1, 2, 3, 4]
Squared: [0, 1, 4, 9, 16]
# Cell 255 - map

nums_255 = list(range(6))
squared_255 = list(map(lambda x: x ** 2, nums_255))
print("Cell 255 - map")
print("Input:", nums_255)
print("Squared:", squared_255)
Cell 255 - map
Input: [0, 1, 2, 3, 4, 5]
Squared: [0, 1, 4, 9, 16, 25]
# Cell 256 - map

nums_256 = list(range(7))
squared_256 = list(map(lambda x: x ** 2, nums_256))
print("Cell 256 - map")
print("Input:", nums_256)
print("Squared:", squared_256)
Cell 256 - map
Input: [0, 1, 2, 3, 4, 5, 6]
Squared: [0, 1, 4, 9, 16, 25, 36]
# Cell 257 - map

nums_257 = list(range(8))
squared_257 = list(map(lambda x: x ** 2, nums_257))
print("Cell 257 - map")
print("Input:", nums_257)
print("Squared:", squared_257)
Cell 257 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7]
Squared: [0, 1, 4, 9, 16, 25, 36, 49]
# Cell 258 - map

nums_258 = list(range(9))
squared_258 = list(map(lambda x: x ** 2, nums_258))
print("Cell 258 - map")
print("Input:", nums_258)
print("Squared:", squared_258)
Cell 258 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 259 - map

nums_259 = list(range(10))
squared_259 = list(map(lambda x: x ** 2, nums_259))
print("Cell 259 - map")
print("Input:", nums_259)
print("Squared:", squared_259)
Cell 259 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 260 - map

nums_260 = list(range(11))
squared_260 = list(map(lambda x: x ** 2, nums_260))
print("Cell 260 - map")
print("Input:", nums_260)
print("Squared:", squared_260)
Cell 260 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 261 - map

nums_261 = list(range(12))
squared_261 = list(map(lambda x: x ** 2, nums_261))
print("Cell 261 - map")
print("Input:", nums_261)
print("Squared:", squared_261)
Cell 261 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 262 - map

nums_262 = list(range(13))
squared_262 = list(map(lambda x: x ** 2, nums_262))
print("Cell 262 - map")
print("Input:", nums_262)
print("Squared:", squared_262)
Cell 262 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 263 - map

nums_263 = list(range(14))
squared_263 = list(map(lambda x: x ** 2, nums_263))
print("Cell 263 - map")
print("Input:", nums_263)
print("Squared:", squared_263)
Cell 263 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 264 - map

nums_264 = list(range(15))
squared_264 = list(map(lambda x: x ** 2, nums_264))
print("Cell 264 - map")
print("Input:", nums_264)
print("Squared:", squared_264)
Cell 264 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 265 - map

nums_265 = list(range(16))
squared_265 = list(map(lambda x: x ** 2, nums_265))
print("Cell 265 - map")
print("Input:", nums_265)
print("Squared:", squared_265)
Cell 265 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 266 - map

nums_266 = list(range(17))
squared_266 = list(map(lambda x: x ** 2, nums_266))
print("Cell 266 - map")
print("Input:", nums_266)
print("Squared:", squared_266)
Cell 266 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 267 - map

nums_267 = list(range(18))
squared_267 = list(map(lambda x: x ** 2, nums_267))
print("Cell 267 - map")
print("Input:", nums_267)
print("Squared:", squared_267)
Cell 267 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 268 - map

nums_268 = list(range(19))
squared_268 = list(map(lambda x: x ** 2, nums_268))
print("Cell 268 - map")
print("Input:", nums_268)
print("Squared:", squared_268)
Cell 268 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 269 - map

nums_269 = list(range(20))
squared_269 = list(map(lambda x: x ** 2, nums_269))
print("Cell 269 - map")
print("Input:", nums_269)
print("Squared:", squared_269)
Cell 269 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 270 - map

nums_270 = list(range(21))
squared_270 = list(map(lambda x: x ** 2, nums_270))
print("Cell 270 - map")
print("Input:", nums_270)
print("Squared:", squared_270)
Cell 270 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 271 - map

nums_271 = list(range(22))
squared_271 = list(map(lambda x: x ** 2, nums_271))
print("Cell 271 - map")
print("Input:", nums_271)
print("Squared:", squared_271)
Cell 271 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 272 - map

nums_272 = list(range(23))
squared_272 = list(map(lambda x: x ** 2, nums_272))
print("Cell 272 - map")
print("Input:", nums_272)
print("Squared:", squared_272)
Cell 272 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 273 - map

nums_273 = list(range(24))
squared_273 = list(map(lambda x: x ** 2, nums_273))
print("Cell 273 - map")
print("Input:", nums_273)
print("Squared:", squared_273)
Cell 273 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 274 - map

nums_274 = list(range(25))
squared_274 = list(map(lambda x: x ** 2, nums_274))
print("Cell 274 - map")
print("Input:", nums_274)
print("Squared:", squared_274)
Cell 274 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 275 - map

nums_275 = list(range(26))
squared_275 = list(map(lambda x: x ** 2, nums_275))
print("Cell 275 - map")
print("Input:", nums_275)
print("Squared:", squared_275)
Cell 275 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 276 - map

nums_276 = list(range(27))
squared_276 = list(map(lambda x: x ** 2, nums_276))
print("Cell 276 - map")
print("Input:", nums_276)
print("Squared:", squared_276)
Cell 276 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 277 - map

nums_277 = list(range(28))
squared_277 = list(map(lambda x: x ** 2, nums_277))
print("Cell 277 - map")
print("Input:", nums_277)
print("Squared:", squared_277)
Cell 277 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 278 - map

nums_278 = list(range(29))
squared_278 = list(map(lambda x: x ** 2, nums_278))
print("Cell 278 - map")
print("Input:", nums_278)
print("Squared:", squared_278)
Cell 278 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 279 - map

nums_279 = list(range(30))
squared_279 = list(map(lambda x: x ** 2, nums_279))
print("Cell 279 - map")
print("Input:", nums_279)
print("Squared:", squared_279)
Cell 279 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 280 - map

nums_280 = list(range(31))
squared_280 = list(map(lambda x: x ** 2, nums_280))
print("Cell 280 - map")
print("Input:", nums_280)
print("Squared:", squared_280)
Cell 280 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900]
# Cell 281 - map

nums_281 = list(range(32))
squared_281 = list(map(lambda x: x ** 2, nums_281))
print("Cell 281 - map")
print("Input:", nums_281)
print("Squared:", squared_281)
Cell 281 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961]
# Cell 282 - map

nums_282 = list(range(33))
squared_282 = list(map(lambda x: x ** 2, nums_282))
print("Cell 282 - map")
print("Input:", nums_282)
print("Squared:", squared_282)
Cell 282 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024]
# Cell 283 - map

nums_283 = list(range(34))
squared_283 = list(map(lambda x: x ** 2, nums_283))
print("Cell 283 - map")
print("Input:", nums_283)
print("Squared:", squared_283)
Cell 283 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089]
# Cell 284 - map

nums_284 = list(range(35))
squared_284 = list(map(lambda x: x ** 2, nums_284))
print("Cell 284 - map")
print("Input:", nums_284)
print("Squared:", squared_284)
Cell 284 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156]
# Cell 285 - map

nums_285 = list(range(36))
squared_285 = list(map(lambda x: x ** 2, nums_285))
print("Cell 285 - map")
print("Input:", nums_285)
print("Squared:", squared_285)
Cell 285 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225]
# Cell 286 - map

nums_286 = list(range(37))
squared_286 = list(map(lambda x: x ** 2, nums_286))
print("Cell 286 - map")
print("Input:", nums_286)
print("Squared:", squared_286)
Cell 286 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296]
# Cell 287 - map

nums_287 = list(range(38))
squared_287 = list(map(lambda x: x ** 2, nums_287))
print("Cell 287 - map")
print("Input:", nums_287)
print("Squared:", squared_287)
Cell 287 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369]
# Cell 288 - map

nums_288 = list(range(39))
squared_288 = list(map(lambda x: x ** 2, nums_288))
print("Cell 288 - map")
print("Input:", nums_288)
print("Squared:", squared_288)
Cell 288 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444]
# Cell 289 - map

nums_289 = list(range(40))
squared_289 = list(map(lambda x: x ** 2, nums_289))
print("Cell 289 - map")
print("Input:", nums_289)
print("Squared:", squared_289)
Cell 289 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521]
# Cell 290 - map

nums_290 = list(range(41))
squared_290 = list(map(lambda x: x ** 2, nums_290))
print("Cell 290 - map")
print("Input:", nums_290)
print("Squared:", squared_290)
Cell 290 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600]
# Cell 291 - map

nums_291 = list(range(42))
squared_291 = list(map(lambda x: x ** 2, nums_291))
print("Cell 291 - map")
print("Input:", nums_291)
print("Squared:", squared_291)
Cell 291 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681]
# Cell 292 - map

nums_292 = list(range(43))
squared_292 = list(map(lambda x: x ** 2, nums_292))
print("Cell 292 - map")
print("Input:", nums_292)
print("Squared:", squared_292)
Cell 292 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764]
# Cell 293 - map

nums_293 = list(range(44))
squared_293 = list(map(lambda x: x ** 2, nums_293))
print("Cell 293 - map")
print("Input:", nums_293)
print("Squared:", squared_293)
Cell 293 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849]
# Cell 294 - map

nums_294 = list(range(45))
squared_294 = list(map(lambda x: x ** 2, nums_294))
print("Cell 294 - map")
print("Input:", nums_294)
print("Squared:", squared_294)
Cell 294 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936]
# Cell 295 - map

nums_295 = list(range(46))
squared_295 = list(map(lambda x: x ** 2, nums_295))
print("Cell 295 - map")
print("Input:", nums_295)
print("Squared:", squared_295)
Cell 295 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025]
# Cell 296 - map

nums_296 = list(range(47))
squared_296 = list(map(lambda x: x ** 2, nums_296))
print("Cell 296 - map")
print("Input:", nums_296)
print("Squared:", squared_296)
Cell 296 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116]
# Cell 297 - map

nums_297 = list(range(48))
squared_297 = list(map(lambda x: x ** 2, nums_297))
print("Cell 297 - map")
print("Input:", nums_297)
print("Squared:", squared_297)
Cell 297 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209]
# Cell 298 - map

nums_298 = list(range(49))
squared_298 = list(map(lambda x: x ** 2, nums_298))
print("Cell 298 - map")
print("Input:", nums_298)
print("Squared:", squared_298)
Cell 298 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304]
# Cell 299 - map

nums_299 = list(range(50))
squared_299 = list(map(lambda x: x ** 2, nums_299))
print("Cell 299 - map")
print("Input:", nums_299)
print("Squared:", squared_299)
Cell 299 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401]
# Cell 300 - map

nums_300 = list(range(1))
squared_300 = list(map(lambda x: x ** 2, nums_300))
print("Cell 300 - map")
print("Input:", nums_300)
print("Squared:", squared_300)
Cell 300 - map
Input: [0]
Squared: [0]
# Cell 301 - map

nums_301 = list(range(2))
squared_301 = list(map(lambda x: x ** 2, nums_301))
print("Cell 301 - map")
print("Input:", nums_301)
print("Squared:", squared_301)
Cell 301 - map
Input: [0, 1]
Squared: [0, 1]
# Cell 302 - map

nums_302 = list(range(3))
squared_302 = list(map(lambda x: x ** 2, nums_302))
print("Cell 302 - map")
print("Input:", nums_302)
print("Squared:", squared_302)
Cell 302 - map
Input: [0, 1, 2]
Squared: [0, 1, 4]
# Cell 303 - map

nums_303 = list(range(4))
squared_303 = list(map(lambda x: x ** 2, nums_303))
print("Cell 303 - map")
print("Input:", nums_303)
print("Squared:", squared_303)
Cell 303 - map
Input: [0, 1, 2, 3]
Squared: [0, 1, 4, 9]
# Cell 304 - map

nums_304 = list(range(5))
squared_304 = list(map(lambda x: x ** 2, nums_304))
print("Cell 304 - map")
print("Input:", nums_304)
print("Squared:", squared_304)
Cell 304 - map
Input: [0, 1, 2, 3, 4]
Squared: [0, 1, 4, 9, 16]
# Cell 305 - map

nums_305 = list(range(6))
squared_305 = list(map(lambda x: x ** 2, nums_305))
print("Cell 305 - map")
print("Input:", nums_305)
print("Squared:", squared_305)
Cell 305 - map
Input: [0, 1, 2, 3, 4, 5]
Squared: [0, 1, 4, 9, 16, 25]
# Cell 306 - map

nums_306 = list(range(7))
squared_306 = list(map(lambda x: x ** 2, nums_306))
print("Cell 306 - map")
print("Input:", nums_306)
print("Squared:", squared_306)
Cell 306 - map
Input: [0, 1, 2, 3, 4, 5, 6]
Squared: [0, 1, 4, 9, 16, 25, 36]
# Cell 307 - map

nums_307 = list(range(8))
squared_307 = list(map(lambda x: x ** 2, nums_307))
print("Cell 307 - map")
print("Input:", nums_307)
print("Squared:", squared_307)
Cell 307 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7]
Squared: [0, 1, 4, 9, 16, 25, 36, 49]
# Cell 308 - map

nums_308 = list(range(9))
squared_308 = list(map(lambda x: x ** 2, nums_308))
print("Cell 308 - map")
print("Input:", nums_308)
print("Squared:", squared_308)
Cell 308 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 309 - map

nums_309 = list(range(10))
squared_309 = list(map(lambda x: x ** 2, nums_309))
print("Cell 309 - map")
print("Input:", nums_309)
print("Squared:", squared_309)
Cell 309 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 310 - map

nums_310 = list(range(11))
squared_310 = list(map(lambda x: x ** 2, nums_310))
print("Cell 310 - map")
print("Input:", nums_310)
print("Squared:", squared_310)
Cell 310 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 311 - map

nums_311 = list(range(12))
squared_311 = list(map(lambda x: x ** 2, nums_311))
print("Cell 311 - map")
print("Input:", nums_311)
print("Squared:", squared_311)
Cell 311 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 312 - map

nums_312 = list(range(13))
squared_312 = list(map(lambda x: x ** 2, nums_312))
print("Cell 312 - map")
print("Input:", nums_312)
print("Squared:", squared_312)
Cell 312 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 313 - map

nums_313 = list(range(14))
squared_313 = list(map(lambda x: x ** 2, nums_313))
print("Cell 313 - map")
print("Input:", nums_313)
print("Squared:", squared_313)
Cell 313 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 314 - map

nums_314 = list(range(15))
squared_314 = list(map(lambda x: x ** 2, nums_314))
print("Cell 314 - map")
print("Input:", nums_314)
print("Squared:", squared_314)
Cell 314 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 315 - map

nums_315 = list(range(16))
squared_315 = list(map(lambda x: x ** 2, nums_315))
print("Cell 315 - map")
print("Input:", nums_315)
print("Squared:", squared_315)
Cell 315 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 316 - map

nums_316 = list(range(17))
squared_316 = list(map(lambda x: x ** 2, nums_316))
print("Cell 316 - map")
print("Input:", nums_316)
print("Squared:", squared_316)
Cell 316 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 317 - map

nums_317 = list(range(18))
squared_317 = list(map(lambda x: x ** 2, nums_317))
print("Cell 317 - map")
print("Input:", nums_317)
print("Squared:", squared_317)
Cell 317 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 318 - map

nums_318 = list(range(19))
squared_318 = list(map(lambda x: x ** 2, nums_318))
print("Cell 318 - map")
print("Input:", nums_318)
print("Squared:", squared_318)
Cell 318 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 319 - map

nums_319 = list(range(20))
squared_319 = list(map(lambda x: x ** 2, nums_319))
print("Cell 319 - map")
print("Input:", nums_319)
print("Squared:", squared_319)
Cell 319 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 320 - map

nums_320 = list(range(21))
squared_320 = list(map(lambda x: x ** 2, nums_320))
print("Cell 320 - map")
print("Input:", nums_320)
print("Squared:", squared_320)
Cell 320 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 321 - map

nums_321 = list(range(22))
squared_321 = list(map(lambda x: x ** 2, nums_321))
print("Cell 321 - map")
print("Input:", nums_321)
print("Squared:", squared_321)
Cell 321 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 322 - map

nums_322 = list(range(23))
squared_322 = list(map(lambda x: x ** 2, nums_322))
print("Cell 322 - map")
print("Input:", nums_322)
print("Squared:", squared_322)
Cell 322 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 323 - map

nums_323 = list(range(24))
squared_323 = list(map(lambda x: x ** 2, nums_323))
print("Cell 323 - map")
print("Input:", nums_323)
print("Squared:", squared_323)
Cell 323 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 324 - map

nums_324 = list(range(25))
squared_324 = list(map(lambda x: x ** 2, nums_324))
print("Cell 324 - map")
print("Input:", nums_324)
print("Squared:", squared_324)
Cell 324 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 325 - map

nums_325 = list(range(26))
squared_325 = list(map(lambda x: x ** 2, nums_325))
print("Cell 325 - map")
print("Input:", nums_325)
print("Squared:", squared_325)
Cell 325 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 326 - map

nums_326 = list(range(27))
squared_326 = list(map(lambda x: x ** 2, nums_326))
print("Cell 326 - map")
print("Input:", nums_326)
print("Squared:", squared_326)
Cell 326 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 327 - map

nums_327 = list(range(28))
squared_327 = list(map(lambda x: x ** 2, nums_327))
print("Cell 327 - map")
print("Input:", nums_327)
print("Squared:", squared_327)
Cell 327 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 328 - map

nums_328 = list(range(29))
squared_328 = list(map(lambda x: x ** 2, nums_328))
print("Cell 328 - map")
print("Input:", nums_328)
print("Squared:", squared_328)
Cell 328 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 329 - map

nums_329 = list(range(30))
squared_329 = list(map(lambda x: x ** 2, nums_329))
print("Cell 329 - map")
print("Input:", nums_329)
print("Squared:", squared_329)
Cell 329 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 330 - map

nums_330 = list(range(31))
squared_330 = list(map(lambda x: x ** 2, nums_330))
print("Cell 330 - map")
print("Input:", nums_330)
print("Squared:", squared_330)
Cell 330 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900]
# Cell 331 - map

nums_331 = list(range(32))
squared_331 = list(map(lambda x: x ** 2, nums_331))
print("Cell 331 - map")
print("Input:", nums_331)
print("Squared:", squared_331)
Cell 331 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961]
# Cell 332 - map

nums_332 = list(range(33))
squared_332 = list(map(lambda x: x ** 2, nums_332))
print("Cell 332 - map")
print("Input:", nums_332)
print("Squared:", squared_332)
Cell 332 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024]
# Cell 333 - map

nums_333 = list(range(34))
squared_333 = list(map(lambda x: x ** 2, nums_333))
print("Cell 333 - map")
print("Input:", nums_333)
print("Squared:", squared_333)
Cell 333 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089]
# Cell 334 - map

nums_334 = list(range(35))
squared_334 = list(map(lambda x: x ** 2, nums_334))
print("Cell 334 - map")
print("Input:", nums_334)
print("Squared:", squared_334)
Cell 334 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156]
# Cell 335 - map

nums_335 = list(range(36))
squared_335 = list(map(lambda x: x ** 2, nums_335))
print("Cell 335 - map")
print("Input:", nums_335)
print("Squared:", squared_335)
Cell 335 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225]
# Cell 336 - map

nums_336 = list(range(37))
squared_336 = list(map(lambda x: x ** 2, nums_336))
print("Cell 336 - map")
print("Input:", nums_336)
print("Squared:", squared_336)
Cell 336 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296]
# Cell 337 - map

nums_337 = list(range(38))
squared_337 = list(map(lambda x: x ** 2, nums_337))
print("Cell 337 - map")
print("Input:", nums_337)
print("Squared:", squared_337)
Cell 337 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369]
# Cell 338 - map

nums_338 = list(range(39))
squared_338 = list(map(lambda x: x ** 2, nums_338))
print("Cell 338 - map")
print("Input:", nums_338)
print("Squared:", squared_338)
Cell 338 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444]
# Cell 339 - map

nums_339 = list(range(40))
squared_339 = list(map(lambda x: x ** 2, nums_339))
print("Cell 339 - map")
print("Input:", nums_339)
print("Squared:", squared_339)
Cell 339 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521]
# Cell 340 - map

nums_340 = list(range(41))
squared_340 = list(map(lambda x: x ** 2, nums_340))
print("Cell 340 - map")
print("Input:", nums_340)
print("Squared:", squared_340)
Cell 340 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600]
# Cell 341 - map

nums_341 = list(range(42))
squared_341 = list(map(lambda x: x ** 2, nums_341))
print("Cell 341 - map")
print("Input:", nums_341)
print("Squared:", squared_341)
Cell 341 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681]
# Cell 342 - map

nums_342 = list(range(43))
squared_342 = list(map(lambda x: x ** 2, nums_342))
print("Cell 342 - map")
print("Input:", nums_342)
print("Squared:", squared_342)
Cell 342 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764]
# Cell 343 - map

nums_343 = list(range(44))
squared_343 = list(map(lambda x: x ** 2, nums_343))
print("Cell 343 - map")
print("Input:", nums_343)
print("Squared:", squared_343)
Cell 343 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849]
# Cell 344 - map

nums_344 = list(range(45))
squared_344 = list(map(lambda x: x ** 2, nums_344))
print("Cell 344 - map")
print("Input:", nums_344)
print("Squared:", squared_344)
Cell 344 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936]
# Cell 345 - map

nums_345 = list(range(46))
squared_345 = list(map(lambda x: x ** 2, nums_345))
print("Cell 345 - map")
print("Input:", nums_345)
print("Squared:", squared_345)
Cell 345 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025]
# Cell 346 - map

nums_346 = list(range(47))
squared_346 = list(map(lambda x: x ** 2, nums_346))
print("Cell 346 - map")
print("Input:", nums_346)
print("Squared:", squared_346)
Cell 346 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116]
# Cell 347 - map

nums_347 = list(range(48))
squared_347 = list(map(lambda x: x ** 2, nums_347))
print("Cell 347 - map")
print("Input:", nums_347)
print("Squared:", squared_347)
Cell 347 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209]
# Cell 348 - map

nums_348 = list(range(49))
squared_348 = list(map(lambda x: x ** 2, nums_348))
print("Cell 348 - map")
print("Input:", nums_348)
print("Squared:", squared_348)
Cell 348 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304]
# Cell 349 - map

nums_349 = list(range(50))
squared_349 = list(map(lambda x: x ** 2, nums_349))
print("Cell 349 - map")
print("Input:", nums_349)
print("Squared:", squared_349)
Cell 349 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401]
# Cell 350 - map

nums_350 = list(range(1))
squared_350 = list(map(lambda x: x ** 2, nums_350))
print("Cell 350 - map")
print("Input:", nums_350)
print("Squared:", squared_350)
Cell 350 - map
Input: [0]
Squared: [0]
# Cell 351 - map

nums_351 = list(range(2))
squared_351 = list(map(lambda x: x ** 2, nums_351))
print("Cell 351 - map")
print("Input:", nums_351)
print("Squared:", squared_351)
Cell 351 - map
Input: [0, 1]
Squared: [0, 1]
# Cell 352 - map

nums_352 = list(range(3))
squared_352 = list(map(lambda x: x ** 2, nums_352))
print("Cell 352 - map")
print("Input:", nums_352)
print("Squared:", squared_352)
Cell 352 - map
Input: [0, 1, 2]
Squared: [0, 1, 4]
# Cell 353 - map

nums_353 = list(range(4))
squared_353 = list(map(lambda x: x ** 2, nums_353))
print("Cell 353 - map")
print("Input:", nums_353)
print("Squared:", squared_353)
Cell 353 - map
Input: [0, 1, 2, 3]
Squared: [0, 1, 4, 9]
# Cell 354 - map

nums_354 = list(range(5))
squared_354 = list(map(lambda x: x ** 2, nums_354))
print("Cell 354 - map")
print("Input:", nums_354)
print("Squared:", squared_354)
Cell 354 - map
Input: [0, 1, 2, 3, 4]
Squared: [0, 1, 4, 9, 16]
# Cell 355 - map

nums_355 = list(range(6))
squared_355 = list(map(lambda x: x ** 2, nums_355))
print("Cell 355 - map")
print("Input:", nums_355)
print("Squared:", squared_355)
Cell 355 - map
Input: [0, 1, 2, 3, 4, 5]
Squared: [0, 1, 4, 9, 16, 25]
# Cell 356 - map

nums_356 = list(range(7))
squared_356 = list(map(lambda x: x ** 2, nums_356))
print("Cell 356 - map")
print("Input:", nums_356)
print("Squared:", squared_356)
Cell 356 - map
Input: [0, 1, 2, 3, 4, 5, 6]
Squared: [0, 1, 4, 9, 16, 25, 36]
# Cell 357 - map

nums_357 = list(range(8))
squared_357 = list(map(lambda x: x ** 2, nums_357))
print("Cell 357 - map")
print("Input:", nums_357)
print("Squared:", squared_357)
Cell 357 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7]
Squared: [0, 1, 4, 9, 16, 25, 36, 49]
# Cell 358 - map

nums_358 = list(range(9))
squared_358 = list(map(lambda x: x ** 2, nums_358))
print("Cell 358 - map")
print("Input:", nums_358)
print("Squared:", squared_358)
Cell 358 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 359 - map

nums_359 = list(range(10))
squared_359 = list(map(lambda x: x ** 2, nums_359))
print("Cell 359 - map")
print("Input:", nums_359)
print("Squared:", squared_359)
Cell 359 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 360 - map

nums_360 = list(range(11))
squared_360 = list(map(lambda x: x ** 2, nums_360))
print("Cell 360 - map")
print("Input:", nums_360)
print("Squared:", squared_360)
Cell 360 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 361 - map

nums_361 = list(range(12))
squared_361 = list(map(lambda x: x ** 2, nums_361))
print("Cell 361 - map")
print("Input:", nums_361)
print("Squared:", squared_361)
Cell 361 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 362 - map

nums_362 = list(range(13))
squared_362 = list(map(lambda x: x ** 2, nums_362))
print("Cell 362 - map")
print("Input:", nums_362)
print("Squared:", squared_362)
Cell 362 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 363 - map

nums_363 = list(range(14))
squared_363 = list(map(lambda x: x ** 2, nums_363))
print("Cell 363 - map")
print("Input:", nums_363)
print("Squared:", squared_363)
Cell 363 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 364 - map

nums_364 = list(range(15))
squared_364 = list(map(lambda x: x ** 2, nums_364))
print("Cell 364 - map")
print("Input:", nums_364)
print("Squared:", squared_364)
Cell 364 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 365 - map

nums_365 = list(range(16))
squared_365 = list(map(lambda x: x ** 2, nums_365))
print("Cell 365 - map")
print("Input:", nums_365)
print("Squared:", squared_365)
Cell 365 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 366 - map

nums_366 = list(range(17))
squared_366 = list(map(lambda x: x ** 2, nums_366))
print("Cell 366 - map")
print("Input:", nums_366)
print("Squared:", squared_366)
Cell 366 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 367 - map

nums_367 = list(range(18))
squared_367 = list(map(lambda x: x ** 2, nums_367))
print("Cell 367 - map")
print("Input:", nums_367)
print("Squared:", squared_367)
Cell 367 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 368 - map

nums_368 = list(range(19))
squared_368 = list(map(lambda x: x ** 2, nums_368))
print("Cell 368 - map")
print("Input:", nums_368)
print("Squared:", squared_368)
Cell 368 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 369 - map

nums_369 = list(range(20))
squared_369 = list(map(lambda x: x ** 2, nums_369))
print("Cell 369 - map")
print("Input:", nums_369)
print("Squared:", squared_369)
Cell 369 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 370 - map

nums_370 = list(range(21))
squared_370 = list(map(lambda x: x ** 2, nums_370))
print("Cell 370 - map")
print("Input:", nums_370)
print("Squared:", squared_370)
Cell 370 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 371 - map

nums_371 = list(range(22))
squared_371 = list(map(lambda x: x ** 2, nums_371))
print("Cell 371 - map")
print("Input:", nums_371)
print("Squared:", squared_371)
Cell 371 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 372 - map

nums_372 = list(range(23))
squared_372 = list(map(lambda x: x ** 2, nums_372))
print("Cell 372 - map")
print("Input:", nums_372)
print("Squared:", squared_372)
Cell 372 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 373 - map

nums_373 = list(range(24))
squared_373 = list(map(lambda x: x ** 2, nums_373))
print("Cell 373 - map")
print("Input:", nums_373)
print("Squared:", squared_373)
Cell 373 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 374 - map

nums_374 = list(range(25))
squared_374 = list(map(lambda x: x ** 2, nums_374))
print("Cell 374 - map")
print("Input:", nums_374)
print("Squared:", squared_374)
Cell 374 - map
Input: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 375 - map

nums_375 = list(range(26))
squared_375 = list(map(lambda x: x ** 2, nums_375))
print("Cell 375 - map")
print("Input:", nums_375)
print("Squared:", squared_375)
Cell 375 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 376 - map

nums_376 = list(range(27))
squared_376 = list(map(lambda x: x ** 2, nums_376))
print("Cell 376 - map")
print("Input:", nums_376)
print("Squared:", squared_376)
Cell 376 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 377 - map

nums_377 = list(range(28))
squared_377 = list(map(lambda x: x ** 2, nums_377))
print("Cell 377 - map")
print("Input:", nums_377)
print("Squared:", squared_377)
Cell 377 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 378 - map

nums_378 = list(range(29))
squared_378 = list(map(lambda x: x ** 2, nums_378))
print("Cell 378 - map")
print("Input:", nums_378)
print("Squared:", squared_378)
Cell 378 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 379 - map

nums_379 = list(range(30))
squared_379 = list(map(lambda x: x ** 2, nums_379))
print("Cell 379 - map")
print("Input:", nums_379)
print("Squared:", squared_379)
Cell 379 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 380 - map

nums_380 = list(range(31))
squared_380 = list(map(lambda x: x ** 2, nums_380))
print("Cell 380 - map")
print("Input:", nums_380)
print("Squared:", squared_380)
Cell 380 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900]
# Cell 381 - map

nums_381 = list(range(32))
squared_381 = list(map(lambda x: x ** 2, nums_381))
print("Cell 381 - map")
print("Input:", nums_381)
print("Squared:", squared_381)
Cell 381 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961]
# Cell 382 - map

nums_382 = list(range(33))
squared_382 = list(map(lambda x: x ** 2, nums_382))
print("Cell 382 - map")
print("Input:", nums_382)
print("Squared:", squared_382)
Cell 382 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024]
# Cell 383 - map

nums_383 = list(range(34))
squared_383 = list(map(lambda x: x ** 2, nums_383))
print("Cell 383 - map")
print("Input:", nums_383)
print("Squared:", squared_383)
Cell 383 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089]
# Cell 384 - map

nums_384 = list(range(35))
squared_384 = list(map(lambda x: x ** 2, nums_384))
print("Cell 384 - map")
print("Input:", nums_384)
print("Squared:", squared_384)
Cell 384 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156]
# Cell 385 - map

nums_385 = list(range(36))
squared_385 = list(map(lambda x: x ** 2, nums_385))
print("Cell 385 - map")
print("Input:", nums_385)
print("Squared:", squared_385)
Cell 385 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225]
# Cell 386 - map

nums_386 = list(range(37))
squared_386 = list(map(lambda x: x ** 2, nums_386))
print("Cell 386 - map")
print("Input:", nums_386)
print("Squared:", squared_386)
Cell 386 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296]
# Cell 387 - map

nums_387 = list(range(38))
squared_387 = list(map(lambda x: x ** 2, nums_387))
print("Cell 387 - map")
print("Input:", nums_387)
print("Squared:", squared_387)
Cell 387 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369]
# Cell 388 - map

nums_388 = list(range(39))
squared_388 = list(map(lambda x: x ** 2, nums_388))
print("Cell 388 - map")
print("Input:", nums_388)
print("Squared:", squared_388)
Cell 388 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444]
# Cell 389 - map

nums_389 = list(range(40))
squared_389 = list(map(lambda x: x ** 2, nums_389))
print("Cell 389 - map")
print("Input:", nums_389)
print("Squared:", squared_389)
Cell 389 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521]
# Cell 390 - map

nums_390 = list(range(41))
squared_390 = list(map(lambda x: x ** 2, nums_390))
print("Cell 390 - map")
print("Input:", nums_390)
print("Squared:", squared_390)
Cell 390 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600]
# Cell 391 - map

nums_391 = list(range(42))
squared_391 = list(map(lambda x: x ** 2, nums_391))
print("Cell 391 - map")
print("Input:", nums_391)
print("Squared:", squared_391)
Cell 391 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681]
# Cell 392 - map

nums_392 = list(range(43))
squared_392 = list(map(lambda x: x ** 2, nums_392))
print("Cell 392 - map")
print("Input:", nums_392)
print("Squared:", squared_392)
Cell 392 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764]
# Cell 393 - map

nums_393 = list(range(44))
squared_393 = list(map(lambda x: x ** 2, nums_393))
print("Cell 393 - map")
print("Input:", nums_393)
print("Squared:", squared_393)
Cell 393 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849]
# Cell 394 - map

nums_394 = list(range(45))
squared_394 = list(map(lambda x: x ** 2, nums_394))
print("Cell 394 - map")
print("Input:", nums_394)
print("Squared:", squared_394)
Cell 394 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936]
# Cell 395 - map

nums_395 = list(range(46))
squared_395 = list(map(lambda x: x ** 2, nums_395))
print("Cell 395 - map")
print("Input:", nums_395)
print("Squared:", squared_395)
Cell 395 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025]
# Cell 396 - map

nums_396 = list(range(47))
squared_396 = list(map(lambda x: x ** 2, nums_396))
print("Cell 396 - map")
print("Input:", nums_396)
print("Squared:", squared_396)
Cell 396 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116]
# Cell 397 - map

nums_397 = list(range(48))
squared_397 = list(map(lambda x: x ** 2, nums_397))
print("Cell 397 - map")
print("Input:", nums_397)
print("Squared:", squared_397)
Cell 397 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209]
# Cell 398 - map

nums_398 = list(range(49))
squared_398 = list(map(lambda x: x ** 2, nums_398))
print("Cell 398 - map")
print("Input:", nums_398)
print("Squared:", squared_398)
Cell 398 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304]
# Cell 399 - map

nums_399 = list(range(50))
squared_399 = list(map(lambda x: x ** 2, nums_399))
print("Cell 399 - map")
print("Input:", nums_399)
print("Squared:", squared_399)
Cell 399 - map
Input: [0, 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]
Squared: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401]
# Cell 400 - map

nums_400 = list(range(1))
squared_400 = list(map(lambda x: x ** 2, nums_400))
print("Cell 400 - map")
print("Input:", nums_400)
print("Squared:", squared_400)
Cell 400 - map
Input: [0]
Squared: [0]
# Cell 401 - threading

import threading

def print_nums_401():
    for j in range(2):
        print("Cell 401 - threading -", j)

thread_401 = threading.Thread(target=print_nums_401)
thread_401.start()
thread_401.join()
Cell 401 - threading - 0
Cell 401 - threading - 1
# Cell 402 - threading

import threading

def print_nums_402():
    for j in range(3):
        print("Cell 402 - threading -", j)

thread_402 = threading.Thread(target=print_nums_402)
thread_402.start()
thread_402.join()
Cell 402 - threading - 0
Cell 402 - threading - 1
Cell 402 - threading - 2
# Cell 403 - threading

import threading

def print_nums_403():
    for j in range(4):
        print("Cell 403 - threading -", j)

thread_403 = threading.Thread(target=print_nums_403)
thread_403.start()
thread_403.join()
Cell 403 - threading - 0
Cell 403 - threading - 1
Cell 403 - threading - 2
Cell 403 - threading - 3
# Cell 404 - threading

import threading

def print_nums_404():
    for j in range(5):
        print("Cell 404 - threading -", j)

thread_404 = threading.Thread(target=print_nums_404)
thread_404.start()
thread_404.join()
Cell 404 - threading - 0
Cell 404 - threading - 1
Cell 404 - threading - 2
Cell 404 - threading - 3
Cell 404 - threading - 4
# Cell 405 - threading

import threading

def print_nums_405():
    for j in range(6):
        print("Cell 405 - threading -", j)

thread_405 = threading.Thread(target=print_nums_405)
thread_405.start()
thread_405.join()
Cell 405 - threading - 0
Cell 405 - threading - 1
Cell 405 - threading - 2
Cell 405 - threading - 3
Cell 405 - threading - 4
Cell 405 - threading - 5
# Cell 406 - threading

import threading

def print_nums_406():
    for j in range(7):
        print("Cell 406 - threading -", j)

thread_406 = threading.Thread(target=print_nums_406)
thread_406.start()
thread_406.join()
Cell 406 - threading - 0
Cell 406 - threading - 1
Cell 406 - threading - 2
Cell 406 - threading - 3
Cell 406 - threading - 4
Cell 406 - threading - 5
Cell 406 - threading - 6
# Cell 407 - threading

import threading

def print_nums_407():
    for j in range(8):
        print("Cell 407 - threading -", j)

thread_407 = threading.Thread(target=print_nums_407)
thread_407.start()
thread_407.join()
Cell 407 - threading - 0
Cell 407 - threading - 1
Cell 407 - threading - 2
Cell 407 - threading - 3
Cell 407 - threading - 4
Cell 407 - threading - 5
Cell 407 - threading - 6
Cell 407 - threading - 7
# Cell 408 - threading

import threading

def print_nums_408():
    for j in range(9):
        print("Cell 408 - threading -", j)

thread_408 = threading.Thread(target=print_nums_408)
thread_408.start()
thread_408.join()
Cell 408 - threading - 0
Cell 408 - threading - 1
Cell 408 - threading - 2
Cell 408 - threading - 3
Cell 408 - threading - 4
Cell 408 - threading - 5
Cell 408 - threading - 6
Cell 408 - threading - 7
Cell 408 - threading - 8
# Cell 409 - threading

import threading

def print_nums_409():
    for j in range(10):
        print("Cell 409 - threading -", j)

thread_409 = threading.Thread(target=print_nums_409)
thread_409.start()
thread_409.join()
Cell 409 - threading - 0
Cell 409 - threading - 1
Cell 409 - threading - 2
Cell 409 - threading - 3
Cell 409 - threading - 4
Cell 409 - threading - 5
Cell 409 - threading - 6
Cell 409 - threading - 7
Cell 409 - threading - 8
Cell 409 - threading - 9
# Cell 410 - threading

import threading

def print_nums_410():
    for j in range(1):
        print("Cell 410 - threading -", j)

thread_410 = threading.Thread(target=print_nums_410)
thread_410.start()
thread_410.join()
Cell 410 - threading - 0
# Cell 411 - threading

import threading

def print_nums_411():
    for j in range(2):
        print("Cell 411 - threading -", j)

thread_411 = threading.Thread(target=print_nums_411)
thread_411.start()
thread_411.join()
Cell 411 - threading - 0
Cell 411 - threading - 1
# Cell 412 - threading

import threading

def print_nums_412():
    for j in range(3):
        print("Cell 412 - threading -", j)

thread_412 = threading.Thread(target=print_nums_412)
thread_412.start()
thread_412.join()
Cell 412 - threading - 0
Cell 412 - threading - 1
Cell 412 - threading - 2
# Cell 413 - threading

import threading

def print_nums_413():
    for j in range(4):
        print("Cell 413 - threading -", j)

thread_413 = threading.Thread(target=print_nums_413)
thread_413.start()
thread_413.join()
Cell 413 - threading - 0
Cell 413 - threading - 1
Cell 413 - threading - 2
Cell 413 - threading - 3
# Cell 414 - threading

import threading

def print_nums_414():
    for j in range(5):
        print("Cell 414 - threading -", j)

thread_414 = threading.Thread(target=print_nums_414)
thread_414.start()
thread_414.join()
Cell 414 - threading - 0
Cell 414 - threading - 1
Cell 414 - threading - 2
Cell 414 - threading - 3
Cell 414 - threading - 4
# Cell 415 - threading

import threading

def print_nums_415():
    for j in range(6):
        print("Cell 415 - threading -", j)

thread_415 = threading.Thread(target=print_nums_415)
thread_415.start()
thread_415.join()
Cell 415 - threading - 0
Cell 415 - threading - 1
Cell 415 - threading - 2
Cell 415 - threading - 3
Cell 415 - threading - 4
Cell 415 - threading - 5
# Cell 416 - threading

import threading

def print_nums_416():
    for j in range(7):
        print("Cell 416 - threading -", j)

thread_416 = threading.Thread(target=print_nums_416)
thread_416.start()
thread_416.join()
Cell 416 - threading - 0
Cell 416 - threading - 1
Cell 416 - threading - 2
Cell 416 - threading - 3
Cell 416 - threading - 4
Cell 416 - threading - 5
Cell 416 - threading - 6
# Cell 417 - threading

import threading

def print_nums_417():
    for j in range(8):
        print("Cell 417 - threading -", j)

thread_417 = threading.Thread(target=print_nums_417)
thread_417.start()
thread_417.join()
Cell 417 - threading - 0
Cell 417 - threading - 1
Cell 417 - threading - 2
Cell 417 - threading - 3
Cell 417 - threading - 4
Cell 417 - threading - 5
Cell 417 - threading - 6
Cell 417 - threading - 7
# Cell 418 - threading

import threading

def print_nums_418():
    for j in range(9):
        print("Cell 418 - threading -", j)

thread_418 = threading.Thread(target=print_nums_418)
thread_418.start()
thread_418.join()
Cell 418 - threading - 0
Cell 418 - threading - 1
Cell 418 - threading - 2
Cell 418 - threading - 3
Cell 418 - threading - 4
Cell 418 - threading - 5
Cell 418 - threading - 6
Cell 418 - threading - 7
Cell 418 - threading - 8
# Cell 419 - threading

import threading

def print_nums_419():
    for j in range(10):
        print("Cell 419 - threading -", j)

thread_419 = threading.Thread(target=print_nums_419)
thread_419.start()
thread_419.join()
Cell 419 - threading - 0
Cell 419 - threading - 1
Cell 419 - threading - 2
Cell 419 - threading - 3
Cell 419 - threading - 4
Cell 419 - threading - 5
Cell 419 - threading - 6
Cell 419 - threading - 7
Cell 419 - threading - 8
Cell 419 - threading - 9
# Cell 420 - threading

import threading

def print_nums_420():
    for j in range(1):
        print("Cell 420 - threading -", j)

thread_420 = threading.Thread(target=print_nums_420)
thread_420.start()
thread_420.join()
Cell 420 - threading - 0
# Cell 421 - threading

import threading

def print_nums_421():
    for j in range(2):
        print("Cell 421 - threading -", j)

thread_421 = threading.Thread(target=print_nums_421)
thread_421.start()
thread_421.join()
Cell 421 - threading - 0
Cell 421 - threading - 1
# Cell 422 - threading

import threading

def print_nums_422():
    for j in range(3):
        print("Cell 422 - threading -", j)

thread_422 = threading.Thread(target=print_nums_422)
thread_422.start()
thread_422.join()
Cell 422 - threading - 0
Cell 422 - threading - 1
Cell 422 - threading - 2
# Cell 423 - threading

import threading

def print_nums_423():
    for j in range(4):
        print("Cell 423 - threading -", j)

thread_423 = threading.Thread(target=print_nums_423)
thread_423.start()
thread_423.join()
Cell 423 - threading - 0
Cell 423 - threading - 1
Cell 423 - threading - 2
Cell 423 - threading - 3
# Cell 424 - threading

import threading

def print_nums_424():
    for j in range(5):
        print("Cell 424 - threading -", j)

thread_424 = threading.Thread(target=print_nums_424)
thread_424.start()
thread_424.join()
Cell 424 - threading - 0
Cell 424 - threading - 1
Cell 424 - threading - 2
Cell 424 - threading - 3
Cell 424 - threading - 4
# Cell 425 - threading

import threading

def print_nums_425():
    for j in range(6):
        print("Cell 425 - threading -", j)

thread_425 = threading.Thread(target=print_nums_425)
thread_425.start()
thread_425.join()
Cell 425 - threading - 0
Cell 425 - threading - 1
Cell 425 - threading - 2
Cell 425 - threading - 3
Cell 425 - threading - 4
Cell 425 - threading - 5
# Cell 426 - threading

import threading

def print_nums_426():
    for j in range(7):
        print("Cell 426 - threading -", j)

thread_426 = threading.Thread(target=print_nums_426)
thread_426.start()
thread_426.join()
Cell 426 - threading - 0
Cell 426 - threading - 1
Cell 426 - threading - 2
Cell 426 - threading - 3
Cell 426 - threading - 4
Cell 426 - threading - 5
Cell 426 - threading - 6
# Cell 427 - threading

import threading

def print_nums_427():
    for j in range(8):
        print("Cell 427 - threading -", j)

thread_427 = threading.Thread(target=print_nums_427)
thread_427.start()
thread_427.join()
Cell 427 - threading - 0
Cell 427 - threading - 1
Cell 427 - threading - 2
Cell 427 - threading - 3
Cell 427 - threading - 4
Cell 427 - threading - 5
Cell 427 - threading - 6
Cell 427 - threading - 7
# Cell 428 - threading

import threading

def print_nums_428():
    for j in range(9):
        print("Cell 428 - threading -", j)

thread_428 = threading.Thread(target=print_nums_428)
thread_428.start()
thread_428.join()
Cell 428 - threading - 0
Cell 428 - threading - 1
Cell 428 - threading - 2
Cell 428 - threading - 3
Cell 428 - threading - 4
Cell 428 - threading - 5
Cell 428 - threading - 6
Cell 428 - threading - 7
Cell 428 - threading - 8
# Cell 429 - threading

import threading

def print_nums_429():
    for j in range(10):
        print("Cell 429 - threading -", j)

thread_429 = threading.Thread(target=print_nums_429)
thread_429.start()
thread_429.join()
Cell 429 - threading - 0
Cell 429 - threading - 1
Cell 429 - threading - 2
Cell 429 - threading - 3
Cell 429 - threading - 4
Cell 429 - threading - 5
Cell 429 - threading - 6
Cell 429 - threading - 7
Cell 429 - threading - 8
Cell 429 - threading - 9
# Cell 430 - threading

import threading

def print_nums_430():
    for j in range(1):
        print("Cell 430 - threading -", j)

thread_430 = threading.Thread(target=print_nums_430)
thread_430.start()
thread_430.join()
Cell 430 - threading - 0
# Cell 431 - threading

import threading

def print_nums_431():
    for j in range(2):
        print("Cell 431 - threading -", j)

thread_431 = threading.Thread(target=print_nums_431)
thread_431.start()
thread_431.join()
Cell 431 - threading - 0
Cell 431 - threading - 1
# Cell 432 - threading

import threading

def print_nums_432():
    for j in range(3):
        print("Cell 432 - threading -", j)

thread_432 = threading.Thread(target=print_nums_432)
thread_432.start()
thread_432.join()
Cell 432 - threading - 0
Cell 432 - threading - 1
Cell 432 - threading - 2
# Cell 433 - threading

import threading

def print_nums_433():
    for j in range(4):
        print("Cell 433 - threading -", j)

thread_433 = threading.Thread(target=print_nums_433)
thread_433.start()
thread_433.join()
Cell 433 - threading - 0
Cell 433 - threading - 1
Cell 433 - threading - 2
Cell 433 - threading - 3
# Cell 434 - threading

import threading

def print_nums_434():
    for j in range(5):
        print("Cell 434 - threading -", j)

thread_434 = threading.Thread(target=print_nums_434)
thread_434.start()
thread_434.join()
Cell 434 - threading - 0
Cell 434 - threading - 1
Cell 434 - threading - 2
Cell 434 - threading - 3
Cell 434 - threading - 4
# Cell 435 - threading

import threading

def print_nums_435():
    for j in range(6):
        print("Cell 435 - threading -", j)

thread_435 = threading.Thread(target=print_nums_435)
thread_435.start()
thread_435.join()
Cell 435 - threading - 0
Cell 435 - threading - 1
Cell 435 - threading - 2
Cell 435 - threading - 3
Cell 435 - threading - 4
Cell 435 - threading - 5
# Cell 436 - threading

import threading

def print_nums_436():
    for j in range(7):
        print("Cell 436 - threading -", j)

thread_436 = threading.Thread(target=print_nums_436)
thread_436.start()
thread_436.join()
Cell 436 - threading - 0
Cell 436 - threading - 1
Cell 436 - threading - 2
Cell 436 - threading - 3
Cell 436 - threading - 4
Cell 436 - threading - 5
Cell 436 - threading - 6
# Cell 437 - threading

import threading

def print_nums_437():
    for j in range(8):
        print("Cell 437 - threading -", j)

thread_437 = threading.Thread(target=print_nums_437)
thread_437.start()
thread_437.join()
Cell 437 - threading - 0
Cell 437 - threading - 1
Cell 437 - threading - 2
Cell 437 - threading - 3
Cell 437 - threading - 4
Cell 437 - threading - 5
Cell 437 - threading - 6
Cell 437 - threading - 7
# Cell 438 - threading

import threading

def print_nums_438():
    for j in range(9):
        print("Cell 438 - threading -", j)

thread_438 = threading.Thread(target=print_nums_438)
thread_438.start()
thread_438.join()
Cell 438 - threading - 0
Cell 438 - threading - 1
Cell 438 - threading - 2
Cell 438 - threading - 3
Cell 438 - threading - 4
Cell 438 - threading - 5
Cell 438 - threading - 6
Cell 438 - threading - 7
Cell 438 - threading - 8
# Cell 439 - threading

import threading

def print_nums_439():
    for j in range(10):
        print("Cell 439 - threading -", j)

thread_439 = threading.Thread(target=print_nums_439)
thread_439.start()
thread_439.join()
Cell 439 - threading - 0
Cell 439 - threading - 1
Cell 439 - threading - 2
Cell 439 - threading - 3
Cell 439 - threading - 4
Cell 439 - threading - 5
Cell 439 - threading - 6
Cell 439 - threading - 7
Cell 439 - threading - 8
Cell 439 - threading - 9
# Cell 440 - threading

import threading

def print_nums_440():
    for j in range(1):
        print("Cell 440 - threading -", j)

thread_440 = threading.Thread(target=print_nums_440)
thread_440.start()
thread_440.join()
Cell 440 - threading - 0
# Cell 441 - threading

import threading

def print_nums_441():
    for j in range(2):
        print("Cell 441 - threading -", j)

thread_441 = threading.Thread(target=print_nums_441)
thread_441.start()
thread_441.join()
Cell 441 - threading - 0
Cell 441 - threading - 1
# Cell 442 - threading

import threading

def print_nums_442():
    for j in range(3):
        print("Cell 442 - threading -", j)

thread_442 = threading.Thread(target=print_nums_442)
thread_442.start()
thread_442.join()
Cell 442 - threading - 0
Cell 442 - threading - 1
Cell 442 - threading - 2
# Cell 443 - threading

import threading

def print_nums_443():
    for j in range(4):
        print("Cell 443 - threading -", j)

thread_443 = threading.Thread(target=print_nums_443)
thread_443.start()
thread_443.join()
Cell 443 - threading - 0
Cell 443 - threading - 1
Cell 443 - threading - 2
Cell 443 - threading - 3
# Cell 444 - threading

import threading

def print_nums_444():
    for j in range(5):
        print("Cell 444 - threading -", j)

thread_444 = threading.Thread(target=print_nums_444)
thread_444.start()
thread_444.join()
Cell 444 - threading - 0
Cell 444 - threading - 1
Cell 444 - threading - 2
Cell 444 - threading - 3
Cell 444 - threading - 4
# Cell 445 - threading

import threading

def print_nums_445():
    for j in range(6):
        print("Cell 445 - threading -", j)

thread_445 = threading.Thread(target=print_nums_445)
thread_445.start()
thread_445.join()
Cell 445 - threading - 0
Cell 445 - threading - 1
Cell 445 - threading - 2
Cell 445 - threading - 3
Cell 445 - threading - 4
Cell 445 - threading - 5
# Cell 446 - threading

import threading

def print_nums_446():
    for j in range(7):
        print("Cell 446 - threading -", j)

thread_446 = threading.Thread(target=print_nums_446)
thread_446.start()
thread_446.join()
Cell 446 - threading - 0
Cell 446 - threading - 1
Cell 446 - threading - 2
Cell 446 - threading - 3
Cell 446 - threading - 4
Cell 446 - threading - 5
Cell 446 - threading - 6
# Cell 447 - threading

import threading

def print_nums_447():
    for j in range(8):
        print("Cell 447 - threading -", j)

thread_447 = threading.Thread(target=print_nums_447)
thread_447.start()
thread_447.join()
Cell 447 - threading - 0
Cell 447 - threading - 1
Cell 447 - threading - 2
Cell 447 - threading - 3
Cell 447 - threading - 4
Cell 447 - threading - 5
Cell 447 - threading - 6
Cell 447 - threading - 7
# Cell 448 - threading

import threading

def print_nums_448():
    for j in range(9):
        print("Cell 448 - threading -", j)

thread_448 = threading.Thread(target=print_nums_448)
thread_448.start()
thread_448.join()
Cell 448 - threading - 0
Cell 448 - threading - 1
Cell 448 - threading - 2
Cell 448 - threading - 3
Cell 448 - threading - 4
Cell 448 - threading - 5
Cell 448 - threading - 6
Cell 448 - threading - 7
Cell 448 - threading - 8
# Cell 449 - threading

import threading

def print_nums_449():
    for j in range(10):
        print("Cell 449 - threading -", j)

thread_449 = threading.Thread(target=print_nums_449)
thread_449.start()
thread_449.join()
Cell 449 - threading - 0
Cell 449 - threading - 1
Cell 449 - threading - 2
Cell 449 - threading - 3
Cell 449 - threading - 4
Cell 449 - threading - 5
Cell 449 - threading - 6
Cell 449 - threading - 7
Cell 449 - threading - 8
Cell 449 - threading - 9
# Cell 450 - threading

import threading

def print_nums_450():
    for j in range(1):
        print("Cell 450 - threading -", j)

thread_450 = threading.Thread(target=print_nums_450)
thread_450.start()
thread_450.join()
Cell 450 - threading - 0
# Cell 451 - threading

import threading

def print_nums_451():
    for j in range(2):
        print("Cell 451 - threading -", j)

thread_451 = threading.Thread(target=print_nums_451)
thread_451.start()
thread_451.join()
Cell 451 - threading - 0
Cell 451 - threading - 1
# Cell 452 - threading

import threading

def print_nums_452():
    for j in range(3):
        print("Cell 452 - threading -", j)

thread_452 = threading.Thread(target=print_nums_452)
thread_452.start()
thread_452.join()
Cell 452 - threading - 0
Cell 452 - threading - 1
Cell 452 - threading - 2
# Cell 453 - threading

import threading

def print_nums_453():
    for j in range(4):
        print("Cell 453 - threading -", j)

thread_453 = threading.Thread(target=print_nums_453)
thread_453.start()
thread_453.join()
Cell 453 - threading - 0
Cell 453 - threading - 1
Cell 453 - threading - 2
Cell 453 - threading - 3
# Cell 454 - threading

import threading

def print_nums_454():
    for j in range(5):
        print("Cell 454 - threading -", j)

thread_454 = threading.Thread(target=print_nums_454)
thread_454.start()
thread_454.join()
Cell 454 - threading - 0
Cell 454 - threading - 1
Cell 454 - threading - 2
Cell 454 - threading - 3
Cell 454 - threading - 4
# Cell 455 - threading

import threading

def print_nums_455():
    for j in range(6):
        print("Cell 455 - threading -", j)

thread_455 = threading.Thread(target=print_nums_455)
thread_455.start()
thread_455.join()
Cell 455 - threading - 0
Cell 455 - threading - 1
Cell 455 - threading - 2
Cell 455 - threading - 3
Cell 455 - threading - 4
Cell 455 - threading - 5
# Cell 456 - threading

import threading

def print_nums_456():
    for j in range(7):
        print("Cell 456 - threading -", j)

thread_456 = threading.Thread(target=print_nums_456)
thread_456.start()
thread_456.join()
Cell 456 - threading - 0
Cell 456 - threading - 1
Cell 456 - threading - 2
Cell 456 - threading - 3
Cell 456 - threading - 4
Cell 456 - threading - 5
Cell 456 - threading - 6
# Cell 457 - threading

import threading

def print_nums_457():
    for j in range(8):
        print("Cell 457 - threading -", j)

thread_457 = threading.Thread(target=print_nums_457)
thread_457.start()
thread_457.join()
Cell 457 - threading - 0
Cell 457 - threading - 1
Cell 457 - threading - 2
Cell 457 - threading - 3
Cell 457 - threading - 4
Cell 457 - threading - 5
Cell 457 - threading - 6
Cell 457 - threading - 7
# Cell 458 - threading

import threading

def print_nums_458():
    for j in range(9):
        print("Cell 458 - threading -", j)

thread_458 = threading.Thread(target=print_nums_458)
thread_458.start()
thread_458.join()
Cell 458 - threading - 0
Cell 458 - threading - 1
Cell 458 - threading - 2
Cell 458 - threading - 3
Cell 458 - threading - 4
Cell 458 - threading - 5
Cell 458 - threading - 6
Cell 458 - threading - 7
Cell 458 - threading - 8
# Cell 459 - threading

import threading

def print_nums_459():
    for j in range(10):
        print("Cell 459 - threading -", j)

thread_459 = threading.Thread(target=print_nums_459)
thread_459.start()
thread_459.join()
Cell 459 - threading - 0
Cell 459 - threading - 1
Cell 459 - threading - 2
Cell 459 - threading - 3
Cell 459 - threading - 4
Cell 459 - threading - 5
Cell 459 - threading - 6
Cell 459 - threading - 7
Cell 459 - threading - 8
Cell 459 - threading - 9
# Cell 460 - threading

import threading

def print_nums_460():
    for j in range(1):
        print("Cell 460 - threading -", j)

thread_460 = threading.Thread(target=print_nums_460)
thread_460.start()
thread_460.join()
Cell 460 - threading - 0
# Cell 461 - threading

import threading

def print_nums_461():
    for j in range(2):
        print("Cell 461 - threading -", j)

thread_461 = threading.Thread(target=print_nums_461)
thread_461.start()
thread_461.join()
Cell 461 - threading - 0
Cell 461 - threading - 1
# Cell 462 - threading

import threading

def print_nums_462():
    for j in range(3):
        print("Cell 462 - threading -", j)

thread_462 = threading.Thread(target=print_nums_462)
thread_462.start()
thread_462.join()
Cell 462 - threading - 0
Cell 462 - threading - 1
Cell 462 - threading - 2
# Cell 463 - threading

import threading

def print_nums_463():
    for j in range(4):
        print("Cell 463 - threading -", j)

thread_463 = threading.Thread(target=print_nums_463)
thread_463.start()
thread_463.join()
Cell 463 - threading - 0
Cell 463 - threading - 1
Cell 463 - threading - 2
Cell 463 - threading - 3
# Cell 464 - threading

import threading

def print_nums_464():
    for j in range(5):
        print("Cell 464 - threading -", j)

thread_464 = threading.Thread(target=print_nums_464)
thread_464.start()
thread_464.join()
Cell 464 - threading - 0
Cell 464 - threading - 1
Cell 464 - threading - 2
Cell 464 - threading - 3
Cell 464 - threading - 4
# Cell 465 - threading

import threading

def print_nums_465():
    for j in range(6):
        print("Cell 465 - threading -", j)

thread_465 = threading.Thread(target=print_nums_465)
thread_465.start()
thread_465.join()
Cell 465 - threading - 0
Cell 465 - threading - 1
Cell 465 - threading - 2
Cell 465 - threading - 3
Cell 465 - threading - 4
Cell 465 - threading - 5
# Cell 466 - threading

import threading

def print_nums_466():
    for j in range(7):
        print("Cell 466 - threading -", j)

thread_466 = threading.Thread(target=print_nums_466)
thread_466.start()
thread_466.join()
Cell 466 - threading - 0
Cell 466 - threading - 1
Cell 466 - threading - 2
Cell 466 - threading - 3
Cell 466 - threading - 4
Cell 466 - threading - 5
Cell 466 - threading - 6
# Cell 467 - threading

import threading

def print_nums_467():
    for j in range(8):
        print("Cell 467 - threading -", j)

thread_467 = threading.Thread(target=print_nums_467)
thread_467.start()
thread_467.join()
Cell 467 - threading - 0
Cell 467 - threading - 1
Cell 467 - threading - 2
Cell 467 - threading - 3
Cell 467 - threading - 4
Cell 467 - threading - 5
Cell 467 - threading - 6
Cell 467 - threading - 7
# Cell 468 - threading

import threading

def print_nums_468():
    for j in range(9):
        print("Cell 468 - threading -", j)

thread_468 = threading.Thread(target=print_nums_468)
thread_468.start()
thread_468.join()
Cell 468 - threading - 0
Cell 468 - threading - 1
Cell 468 - threading - 2
Cell 468 - threading - 3
Cell 468 - threading - 4
Cell 468 - threading - 5
Cell 468 - threading - 6
Cell 468 - threading - 7
Cell 468 - threading - 8
# Cell 469 - threading

import threading

def print_nums_469():
    for j in range(10):
        print("Cell 469 - threading -", j)

thread_469 = threading.Thread(target=print_nums_469)
thread_469.start()
thread_469.join()
Cell 469 - threading - 0
Cell 469 - threading - 1
Cell 469 - threading - 2
Cell 469 - threading - 3
Cell 469 - threading - 4
Cell 469 - threading - 5
Cell 469 - threading - 6
Cell 469 - threading - 7
Cell 469 - threading - 8
Cell 469 - threading - 9
# Cell 470 - threading

import threading

def print_nums_470():
    for j in range(1):
        print("Cell 470 - threading -", j)

thread_470 = threading.Thread(target=print_nums_470)
thread_470.start()
thread_470.join()
Cell 470 - threading - 0
# Cell 471 - threading

import threading

def print_nums_471():
    for j in range(2):
        print("Cell 471 - threading -", j)

thread_471 = threading.Thread(target=print_nums_471)
thread_471.start()
thread_471.join()
Cell 471 - threading - 0
Cell 471 - threading - 1
# Cell 472 - threading

import threading

def print_nums_472():
    for j in range(3):
        print("Cell 472 - threading -", j)

thread_472 = threading.Thread(target=print_nums_472)
thread_472.start()
thread_472.join()
Cell 472 - threading - 0
Cell 472 - threading - 1
Cell 472 - threading - 2
# Cell 473 - threading

import threading

def print_nums_473():
    for j in range(4):
        print("Cell 473 - threading -", j)

thread_473 = threading.Thread(target=print_nums_473)
thread_473.start()
thread_473.join()
Cell 473 - threading - 0
Cell 473 - threading - 1
Cell 473 - threading - 2
Cell 473 - threading - 3
# Cell 474 - threading

import threading

def print_nums_474():
    for j in range(5):
        print("Cell 474 - threading -", j)

thread_474 = threading.Thread(target=print_nums_474)
thread_474.start()
thread_474.join()
Cell 474 - threading - 0
Cell 474 - threading - 1
Cell 474 - threading - 2
Cell 474 - threading - 3
Cell 474 - threading - 4
# Cell 475 - threading

import threading

def print_nums_475():
    for j in range(6):
        print("Cell 475 - threading -", j)

thread_475 = threading.Thread(target=print_nums_475)
thread_475.start()
thread_475.join()
Cell 475 - threading - 0
Cell 475 - threading - 1
Cell 475 - threading - 2
Cell 475 - threading - 3
Cell 475 - threading - 4
Cell 475 - threading - 5
# Cell 476 - threading

import threading

def print_nums_476():
    for j in range(7):
        print("Cell 476 - threading -", j)

thread_476 = threading.Thread(target=print_nums_476)
thread_476.start()
thread_476.join()
Cell 476 - threading - 0
Cell 476 - threading - 1
Cell 476 - threading - 2
Cell 476 - threading - 3
Cell 476 - threading - 4
Cell 476 - threading - 5
Cell 476 - threading - 6
# Cell 477 - threading

import threading

def print_nums_477():
    for j in range(8):
        print("Cell 477 - threading -", j)

thread_477 = threading.Thread(target=print_nums_477)
thread_477.start()
thread_477.join()
Cell 477 - threading - 0
Cell 477 - threading - 1
Cell 477 - threading - 2
Cell 477 - threading - 3
Cell 477 - threading - 4
Cell 477 - threading - 5
Cell 477 - threading - 6
Cell 477 - threading - 7
# Cell 478 - threading

import threading

def print_nums_478():
    for j in range(9):
        print("Cell 478 - threading -", j)

thread_478 = threading.Thread(target=print_nums_478)
thread_478.start()
thread_478.join()
Cell 478 - threading - 0
Cell 478 - threading - 1
Cell 478 - threading - 2
Cell 478 - threading - 3
Cell 478 - threading - 4
Cell 478 - threading - 5
Cell 478 - threading - 6
Cell 478 - threading - 7
Cell 478 - threading - 8
# Cell 479 - threading

import threading

def print_nums_479():
    for j in range(10):
        print("Cell 479 - threading -", j)

thread_479 = threading.Thread(target=print_nums_479)
thread_479.start()
thread_479.join()
Cell 479 - threading - 0
Cell 479 - threading - 1
Cell 479 - threading - 2
Cell 479 - threading - 3
Cell 479 - threading - 4
Cell 479 - threading - 5
Cell 479 - threading - 6
Cell 479 - threading - 7
Cell 479 - threading - 8
Cell 479 - threading - 9
# Cell 480 - threading

import threading

def print_nums_480():
    for j in range(1):
        print("Cell 480 - threading -", j)

thread_480 = threading.Thread(target=print_nums_480)
thread_480.start()
thread_480.join()
Cell 480 - threading - 0
# Cell 481 - threading

import threading

def print_nums_481():
    for j in range(2):
        print("Cell 481 - threading -", j)

thread_481 = threading.Thread(target=print_nums_481)
thread_481.start()
thread_481.join()
Cell 481 - threading - 0
Cell 481 - threading - 1
# Cell 482 - threading

import threading

def print_nums_482():
    for j in range(3):
        print("Cell 482 - threading -", j)

thread_482 = threading.Thread(target=print_nums_482)
thread_482.start()
thread_482.join()
Cell 482 - threading - 0
Cell 482 - threading - 1
Cell 482 - threading - 2
# Cell 483 - threading

import threading

def print_nums_483():
    for j in range(4):
        print("Cell 483 - threading -", j)

thread_483 = threading.Thread(target=print_nums_483)
thread_483.start()
thread_483.join()
Cell 483 - threading - 0
Cell 483 - threading - 1
Cell 483 - threading - 2
Cell 483 - threading - 3
# Cell 484 - threading

import threading

def print_nums_484():
    for j in range(5):
        print("Cell 484 - threading -", j)

thread_484 = threading.Thread(target=print_nums_484)
thread_484.start()
thread_484.join()
Cell 484 - threading - 0
Cell 484 - threading - 1
Cell 484 - threading - 2
Cell 484 - threading - 3
Cell 484 - threading - 4
# Cell 485 - threading

import threading

def print_nums_485():
    for j in range(6):
        print("Cell 485 - threading -", j)

thread_485 = threading.Thread(target=print_nums_485)
thread_485.start()
thread_485.join()
Cell 485 - threading - 0
Cell 485 - threading - 1
Cell 485 - threading - 2
Cell 485 - threading - 3
Cell 485 - threading - 4
Cell 485 - threading - 5
# Cell 486 - threading

import threading

def print_nums_486():
    for j in range(7):
        print("Cell 486 - threading -", j)

thread_486 = threading.Thread(target=print_nums_486)
thread_486.start()
thread_486.join()
Cell 486 - threading - 0
Cell 486 - threading - 1
Cell 486 - threading - 2
Cell 486 - threading - 3
Cell 486 - threading - 4
Cell 486 - threading - 5
Cell 486 - threading - 6
# Cell 487 - threading

import threading

def print_nums_487():
    for j in range(8):
        print("Cell 487 - threading -", j)

thread_487 = threading.Thread(target=print_nums_487)
thread_487.start()
thread_487.join()
Cell 487 - threading - 0
Cell 487 - threading - 1
Cell 487 - threading - 2
Cell 487 - threading - 3
Cell 487 - threading - 4
Cell 487 - threading - 5
Cell 487 - threading - 6
Cell 487 - threading - 7
# Cell 488 - threading

import threading

def print_nums_488():
    for j in range(9):
        print("Cell 488 - threading -", j)

thread_488 = threading.Thread(target=print_nums_488)
thread_488.start()
thread_488.join()
Cell 488 - threading - 0
Cell 488 - threading - 1
Cell 488 - threading - 2
Cell 488 - threading - 3
Cell 488 - threading - 4
Cell 488 - threading - 5
Cell 488 - threading - 6
Cell 488 - threading - 7
Cell 488 - threading - 8
# Cell 489 - threading

import threading

def print_nums_489():
    for j in range(10):
        print("Cell 489 - threading -", j)

thread_489 = threading.Thread(target=print_nums_489)
thread_489.start()
thread_489.join()
Cell 489 - threading - 0
Cell 489 - threading - 1
Cell 489 - threading - 2
Cell 489 - threading - 3
Cell 489 - threading - 4
Cell 489 - threading - 5
Cell 489 - threading - 6
Cell 489 - threading - 7
Cell 489 - threading - 8
Cell 489 - threading - 9
# Cell 490 - threading

import threading

def print_nums_490():
    for j in range(1):
        print("Cell 490 - threading -", j)

thread_490 = threading.Thread(target=print_nums_490)
thread_490.start()
thread_490.join()
Cell 490 - threading - 0
# Cell 491 - threading

import threading

def print_nums_491():
    for j in range(2):
        print("Cell 491 - threading -", j)

thread_491 = threading.Thread(target=print_nums_491)
thread_491.start()
thread_491.join()
Cell 491 - threading - 0
Cell 491 - threading - 1
# Cell 492 - threading

import threading

def print_nums_492():
    for j in range(3):
        print("Cell 492 - threading -", j)

thread_492 = threading.Thread(target=print_nums_492)
thread_492.start()
thread_492.join()
Cell 492 - threading - 0
Cell 492 - threading - 1
Cell 492 - threading - 2
# Cell 493 - threading

import threading

def print_nums_493():
    for j in range(4):
        print("Cell 493 - threading -", j)

thread_493 = threading.Thread(target=print_nums_493)
thread_493.start()
thread_493.join()
Cell 493 - threading - 0
Cell 493 - threading - 1
Cell 493 - threading - 2
Cell 493 - threading - 3
# Cell 494 - threading

import threading

def print_nums_494():
    for j in range(5):
        print("Cell 494 - threading -", j)

thread_494 = threading.Thread(target=print_nums_494)
thread_494.start()
thread_494.join()
Cell 494 - threading - 0
Cell 494 - threading - 1
Cell 494 - threading - 2
Cell 494 - threading - 3
Cell 494 - threading - 4
# Cell 495 - threading

import threading

def print_nums_495():
    for j in range(6):
        print("Cell 495 - threading -", j)

thread_495 = threading.Thread(target=print_nums_495)
thread_495.start()
thread_495.join()
Cell 495 - threading - 0
Cell 495 - threading - 1
Cell 495 - threading - 2
Cell 495 - threading - 3
Cell 495 - threading - 4
Cell 495 - threading - 5
# Cell 496 - threading

import threading

def print_nums_496():
    for j in range(7):
        print("Cell 496 - threading -", j)

thread_496 = threading.Thread(target=print_nums_496)
thread_496.start()
thread_496.join()
Cell 496 - threading - 0
Cell 496 - threading - 1
Cell 496 - threading - 2
Cell 496 - threading - 3
Cell 496 - threading - 4
Cell 496 - threading - 5
Cell 496 - threading - 6
# Cell 497 - threading

import threading

def print_nums_497():
    for j in range(8):
        print("Cell 497 - threading -", j)

thread_497 = threading.Thread(target=print_nums_497)
thread_497.start()
thread_497.join()
Cell 497 - threading - 0
Cell 497 - threading - 1
Cell 497 - threading - 2
Cell 497 - threading - 3
Cell 497 - threading - 4
Cell 497 - threading - 5
Cell 497 - threading - 6
Cell 497 - threading - 7
# Cell 498 - threading

import threading

def print_nums_498():
    for j in range(9):
        print("Cell 498 - threading -", j)

thread_498 = threading.Thread(target=print_nums_498)
thread_498.start()
thread_498.join()
Cell 498 - threading - 0
Cell 498 - threading - 1
Cell 498 - threading - 2
Cell 498 - threading - 3
Cell 498 - threading - 4
Cell 498 - threading - 5
Cell 498 - threading - 6
Cell 498 - threading - 7
Cell 498 - threading - 8
# Cell 499 - threading

import threading

def print_nums_499():
    for j in range(10):
        print("Cell 499 - threading -", j)

thread_499 = threading.Thread(target=print_nums_499)
thread_499.start()
thread_499.join()
Cell 499 - threading - 0
Cell 499 - threading - 1
Cell 499 - threading - 2
Cell 499 - threading - 3
Cell 499 - threading - 4
Cell 499 - threading - 5
Cell 499 - threading - 6
Cell 499 - threading - 7
Cell 499 - threading - 8
Cell 499 - threading - 9
# Cell 500 - threading

import threading

def print_nums_500():
    for j in range(1):
        print("Cell 500 - threading -", j)

thread_500 = threading.Thread(target=print_nums_500)
thread_500.start()
thread_500.join()
Cell 500 - threading - 0
# Cell 501 - threading

import threading

def print_nums_501():
    for j in range(2):
        print("Cell 501 - threading -", j)

thread_501 = threading.Thread(target=print_nums_501)
thread_501.start()
thread_501.join()
Cell 501 - threading - 0
Cell 501 - threading - 1
# Cell 502 - threading

import threading

def print_nums_502():
    for j in range(3):
        print("Cell 502 - threading -", j)

thread_502 = threading.Thread(target=print_nums_502)
thread_502.start()
thread_502.join()
Cell 502 - threading - 0
Cell 502 - threading - 1
Cell 502 - threading - 2
# Cell 503 - threading

import threading

def print_nums_503():
    for j in range(4):
        print("Cell 503 - threading -", j)

thread_503 = threading.Thread(target=print_nums_503)
thread_503.start()
thread_503.join()
Cell 503 - threading - 0
Cell 503 - threading - 1
Cell 503 - threading - 2
Cell 503 - threading - 3
# Cell 504 - threading

import threading

def print_nums_504():
    for j in range(5):
        print("Cell 504 - threading -", j)

thread_504 = threading.Thread(target=print_nums_504)
thread_504.start()
thread_504.join()
Cell 504 - threading - 0
Cell 504 - threading - 1
Cell 504 - threading - 2
Cell 504 - threading - 3
Cell 504 - threading - 4
# Cell 505 - threading

import threading

def print_nums_505():
    for j in range(6):
        print("Cell 505 - threading -", j)

thread_505 = threading.Thread(target=print_nums_505)
thread_505.start()
thread_505.join()
Cell 505 - threading - 0
Cell 505 - threading - 1
Cell 505 - threading - 2
Cell 505 - threading - 3
Cell 505 - threading - 4
Cell 505 - threading - 5
# Cell 506 - threading

import threading

def print_nums_506():
    for j in range(7):
        print("Cell 506 - threading -", j)

thread_506 = threading.Thread(target=print_nums_506)
thread_506.start()
thread_506.join()
Cell 506 - threading - 0
Cell 506 - threading - 1
Cell 506 - threading - 2
Cell 506 - threading - 3
Cell 506 - threading - 4
Cell 506 - threading - 5
Cell 506 - threading - 6
# Cell 507 - threading

import threading

def print_nums_507():
    for j in range(8):
        print("Cell 507 - threading -", j)

thread_507 = threading.Thread(target=print_nums_507)
thread_507.start()
thread_507.join()
Cell 507 - threading - 0
Cell 507 - threading - 1
Cell 507 - threading - 2
Cell 507 - threading - 3
Cell 507 - threading - 4
Cell 507 - threading - 5
Cell 507 - threading - 6
Cell 507 - threading - 7
# Cell 508 - threading

import threading

def print_nums_508():
    for j in range(9):
        print("Cell 508 - threading -", j)

thread_508 = threading.Thread(target=print_nums_508)
thread_508.start()
thread_508.join()
Cell 508 - threading - 0
Cell 508 - threading - 1
Cell 508 - threading - 2
Cell 508 - threading - 3
Cell 508 - threading - 4
Cell 508 - threading - 5
Cell 508 - threading - 6
Cell 508 - threading - 7
Cell 508 - threading - 8
# Cell 509 - threading

import threading

def print_nums_509():
    for j in range(10):
        print("Cell 509 - threading -", j)

thread_509 = threading.Thread(target=print_nums_509)
thread_509.start()
thread_509.join()
Cell 509 - threading - 0
Cell 509 - threading - 1
Cell 509 - threading - 2
Cell 509 - threading - 3
Cell 509 - threading - 4
Cell 509 - threading - 5
Cell 509 - threading - 6
Cell 509 - threading - 7
Cell 509 - threading - 8
Cell 509 - threading - 9
# Cell 510 - threading

import threading

def print_nums_510():
    for j in range(1):
        print("Cell 510 - threading -", j)

thread_510 = threading.Thread(target=print_nums_510)
thread_510.start()
thread_510.join()
Cell 510 - threading - 0
# Cell 511 - threading

import threading

def print_nums_511():
    for j in range(2):
        print("Cell 511 - threading -", j)

thread_511 = threading.Thread(target=print_nums_511)
thread_511.start()
thread_511.join()
Cell 511 - threading - 0
Cell 511 - threading - 1
# Cell 512 - threading

import threading

def print_nums_512():
    for j in range(3):
        print("Cell 512 - threading -", j)

thread_512 = threading.Thread(target=print_nums_512)
thread_512.start()
thread_512.join()
Cell 512 - threading - 0
Cell 512 - threading - 1
Cell 512 - threading - 2
# Cell 513 - threading

import threading

def print_nums_513():
    for j in range(4):
        print("Cell 513 - threading -", j)

thread_513 = threading.Thread(target=print_nums_513)
thread_513.start()
thread_513.join()
Cell 513 - threading - 0
Cell 513 - threading - 1
Cell 513 - threading - 2
Cell 513 - threading - 3
# Cell 514 - threading

import threading

def print_nums_514():
    for j in range(5):
        print("Cell 514 - threading -", j)

thread_514 = threading.Thread(target=print_nums_514)
thread_514.start()
thread_514.join()
Cell 514 - threading - 0
Cell 514 - threading - 1
Cell 514 - threading - 2
Cell 514 - threading - 3
Cell 514 - threading - 4
# Cell 515 - threading

import threading

def print_nums_515():
    for j in range(6):
        print("Cell 515 - threading -", j)

thread_515 = threading.Thread(target=print_nums_515)
thread_515.start()
thread_515.join()
Cell 515 - threading - 0
Cell 515 - threading - 1
Cell 515 - threading - 2
Cell 515 - threading - 3
Cell 515 - threading - 4
Cell 515 - threading - 5
# Cell 516 - threading

import threading

def print_nums_516():
    for j in range(7):
        print("Cell 516 - threading -", j)

thread_516 = threading.Thread(target=print_nums_516)
thread_516.start()
thread_516.join()
Cell 516 - threading - 0
Cell 516 - threading - 1
Cell 516 - threading - 2
Cell 516 - threading - 3
Cell 516 - threading - 4
Cell 516 - threading - 5
Cell 516 - threading - 6
# Cell 517 - threading

import threading

def print_nums_517():
    for j in range(8):
        print("Cell 517 - threading -", j)

thread_517 = threading.Thread(target=print_nums_517)
thread_517.start()
thread_517.join()
Cell 517 - threading - 0
Cell 517 - threading - 1
Cell 517 - threading - 2
Cell 517 - threading - 3
Cell 517 - threading - 4
Cell 517 - threading - 5
Cell 517 - threading - 6
Cell 517 - threading - 7
# Cell 518 - threading

import threading

def print_nums_518():
    for j in range(9):
        print("Cell 518 - threading -", j)

thread_518 = threading.Thread(target=print_nums_518)
thread_518.start()
thread_518.join()
Cell 518 - threading - 0
Cell 518 - threading - 1
Cell 518 - threading - 2
Cell 518 - threading - 3
Cell 518 - threading - 4
Cell 518 - threading - 5
Cell 518 - threading - 6
Cell 518 - threading - 7
Cell 518 - threading - 8
# Cell 519 - threading

import threading

def print_nums_519():
    for j in range(10):
        print("Cell 519 - threading -", j)

thread_519 = threading.Thread(target=print_nums_519)
thread_519.start()
thread_519.join()
Cell 519 - threading - 0
Cell 519 - threading - 1
Cell 519 - threading - 2
Cell 519 - threading - 3
Cell 519 - threading - 4
Cell 519 - threading - 5
Cell 519 - threading - 6
Cell 519 - threading - 7
Cell 519 - threading - 8
Cell 519 - threading - 9
# Cell 520 - threading

import threading

def print_nums_520():
    for j in range(1):
        print("Cell 520 - threading -", j)

thread_520 = threading.Thread(target=print_nums_520)
thread_520.start()
thread_520.join()
Cell 520 - threading - 0
# Cell 521 - threading

import threading

def print_nums_521():
    for j in range(2):
        print("Cell 521 - threading -", j)

thread_521 = threading.Thread(target=print_nums_521)
thread_521.start()
thread_521.join()
Cell 521 - threading - 0
Cell 521 - threading - 1
# Cell 522 - threading

import threading

def print_nums_522():
    for j in range(3):
        print("Cell 522 - threading -", j)

thread_522 = threading.Thread(target=print_nums_522)
thread_522.start()
thread_522.join()
Cell 522 - threading - 0
Cell 522 - threading - 1
Cell 522 - threading - 2
# Cell 523 - threading

import threading

def print_nums_523():
    for j in range(4):
        print("Cell 523 - threading -", j)

thread_523 = threading.Thread(target=print_nums_523)
thread_523.start()
thread_523.join()
Cell 523 - threading - 0
Cell 523 - threading - 1
Cell 523 - threading - 2
Cell 523 - threading - 3
# Cell 524 - threading

import threading

def print_nums_524():
    for j in range(5):
        print("Cell 524 - threading -", j)

thread_524 = threading.Thread(target=print_nums_524)
thread_524.start()
thread_524.join()
Cell 524 - threading - 0
Cell 524 - threading - 1
Cell 524 - threading - 2
Cell 524 - threading - 3
Cell 524 - threading - 4
# Cell 525 - threading

import threading

def print_nums_525():
    for j in range(6):
        print("Cell 525 - threading -", j)

thread_525 = threading.Thread(target=print_nums_525)
thread_525.start()
thread_525.join()
Cell 525 - threading - 0
Cell 525 - threading - 1
Cell 525 - threading - 2
Cell 525 - threading - 3
Cell 525 - threading - 4
Cell 525 - threading - 5
# Cell 526 - threading

import threading

def print_nums_526():
    for j in range(7):
        print("Cell 526 - threading -", j)

thread_526 = threading.Thread(target=print_nums_526)
thread_526.start()
thread_526.join()
Cell 526 - threading - 0
Cell 526 - threading - 1
Cell 526 - threading - 2
Cell 526 - threading - 3
Cell 526 - threading - 4
Cell 526 - threading - 5
Cell 526 - threading - 6
# Cell 527 - threading

import threading

def print_nums_527():
    for j in range(8):
        print("Cell 527 - threading -", j)

thread_527 = threading.Thread(target=print_nums_527)
thread_527.start()
thread_527.join()
Cell 527 - threading - 0
Cell 527 - threading - 1
Cell 527 - threading - 2
Cell 527 - threading - 3
Cell 527 - threading - 4
Cell 527 - threading - 5
Cell 527 - threading - 6
Cell 527 - threading - 7
# Cell 528 - threading

import threading

def print_nums_528():
    for j in range(9):
        print("Cell 528 - threading -", j)

thread_528 = threading.Thread(target=print_nums_528)
thread_528.start()
thread_528.join()
Cell 528 - threading - 0
Cell 528 - threading - 1
Cell 528 - threading - 2
Cell 528 - threading - 3
Cell 528 - threading - 4
Cell 528 - threading - 5
Cell 528 - threading - 6
Cell 528 - threading - 7
Cell 528 - threading - 8
# Cell 529 - threading

import threading

def print_nums_529():
    for j in range(10):
        print("Cell 529 - threading -", j)

thread_529 = threading.Thread(target=print_nums_529)
thread_529.start()
thread_529.join()
Cell 529 - threading - 0
Cell 529 - threading - 1
Cell 529 - threading - 2
Cell 529 - threading - 3
Cell 529 - threading - 4
Cell 529 - threading - 5
Cell 529 - threading - 6
Cell 529 - threading - 7
Cell 529 - threading - 8
Cell 529 - threading - 9
# Cell 530 - threading

import threading

def print_nums_530():
    for j in range(1):
        print("Cell 530 - threading -", j)

thread_530 = threading.Thread(target=print_nums_530)
thread_530.start()
thread_530.join()
Cell 530 - threading - 0
# Cell 531 - threading

import threading

def print_nums_531():
    for j in range(2):
        print("Cell 531 - threading -", j)

thread_531 = threading.Thread(target=print_nums_531)
thread_531.start()
thread_531.join()
Cell 531 - threading - 0
Cell 531 - threading - 1
# Cell 532 - threading

import threading

def print_nums_532():
    for j in range(3):
        print("Cell 532 - threading -", j)

thread_532 = threading.Thread(target=print_nums_532)
thread_532.start()
thread_532.join()
Cell 532 - threading - 0
Cell 532 - threading - 1
Cell 532 - threading - 2
# Cell 533 - threading

import threading

def print_nums_533():
    for j in range(4):
        print("Cell 533 - threading -", j)

thread_533 = threading.Thread(target=print_nums_533)
thread_533.start()
thread_533.join()
Cell 533 - threading - 0
Cell 533 - threading - 1
Cell 533 - threading - 2
Cell 533 - threading - 3
# Cell 534 - threading

import threading

def print_nums_534():
    for j in range(5):
        print("Cell 534 - threading -", j)

thread_534 = threading.Thread(target=print_nums_534)
thread_534.start()
thread_534.join()
Cell 534 - threading - 0
Cell 534 - threading - 1
Cell 534 - threading - 2
Cell 534 - threading - 3
Cell 534 - threading - 4
# Cell 535 - threading

import threading

def print_nums_535():
    for j in range(6):
        print("Cell 535 - threading -", j)

thread_535 = threading.Thread(target=print_nums_535)
thread_535.start()
thread_535.join()
Cell 535 - threading - 0
Cell 535 - threading - 1
Cell 535 - threading - 2
Cell 535 - threading - 3
Cell 535 - threading - 4
Cell 535 - threading - 5
# Cell 536 - threading

import threading

def print_nums_536():
    for j in range(7):
        print("Cell 536 - threading -", j)

thread_536 = threading.Thread(target=print_nums_536)
thread_536.start()
thread_536.join()
Cell 536 - threading - 0
Cell 536 - threading - 1
Cell 536 - threading - 2
Cell 536 - threading - 3
Cell 536 - threading - 4
Cell 536 - threading - 5
Cell 536 - threading - 6
# Cell 537 - threading

import threading

def print_nums_537():
    for j in range(8):
        print("Cell 537 - threading -", j)

thread_537 = threading.Thread(target=print_nums_537)
thread_537.start()
thread_537.join()
Cell 537 - threading - 0
Cell 537 - threading - 1
Cell 537 - threading - 2
Cell 537 - threading - 3
Cell 537 - threading - 4
Cell 537 - threading - 5
Cell 537 - threading - 6
Cell 537 - threading - 7
# Cell 538 - threading

import threading

def print_nums_538():
    for j in range(9):
        print("Cell 538 - threading -", j)

thread_538 = threading.Thread(target=print_nums_538)
thread_538.start()
thread_538.join()
Cell 538 - threading - 0
Cell 538 - threading - 1
Cell 538 - threading - 2
Cell 538 - threading - 3
Cell 538 - threading - 4
Cell 538 - threading - 5
Cell 538 - threading - 6
Cell 538 - threading - 7
Cell 538 - threading - 8
# Cell 539 - threading

import threading

def print_nums_539():
    for j in range(10):
        print("Cell 539 - threading -", j)

thread_539 = threading.Thread(target=print_nums_539)
thread_539.start()
thread_539.join()
Cell 539 - threading - 0
Cell 539 - threading - 1
Cell 539 - threading - 2
Cell 539 - threading - 3
Cell 539 - threading - 4
Cell 539 - threading - 5
Cell 539 - threading - 6
Cell 539 - threading - 7
Cell 539 - threading - 8
Cell 539 - threading - 9
# Cell 540 - threading

import threading

def print_nums_540():
    for j in range(1):
        print("Cell 540 - threading -", j)

thread_540 = threading.Thread(target=print_nums_540)
thread_540.start()
thread_540.join()
Cell 540 - threading - 0
# Cell 541 - threading

import threading

def print_nums_541():
    for j in range(2):
        print("Cell 541 - threading -", j)

thread_541 = threading.Thread(target=print_nums_541)
thread_541.start()
thread_541.join()
Cell 541 - threading - 0
Cell 541 - threading - 1
# Cell 542 - threading

import threading

def print_nums_542():
    for j in range(3):
        print("Cell 542 - threading -", j)

thread_542 = threading.Thread(target=print_nums_542)
thread_542.start()
thread_542.join()
Cell 542 - threading - 0
Cell 542 - threading - 1
Cell 542 - threading - 2
# Cell 543 - threading

import threading

def print_nums_543():
    for j in range(4):
        print("Cell 543 - threading -", j)

thread_543 = threading.Thread(target=print_nums_543)
thread_543.start()
thread_543.join()
Cell 543 - threading - 0
Cell 543 - threading - 1
Cell 543 - threading - 2
Cell 543 - threading - 3
# Cell 544 - threading

import threading

def print_nums_544():
    for j in range(5):
        print("Cell 544 - threading -", j)

thread_544 = threading.Thread(target=print_nums_544)
thread_544.start()
thread_544.join()
Cell 544 - threading - 0
Cell 544 - threading - 1
Cell 544 - threading - 2
Cell 544 - threading - 3
Cell 544 - threading - 4
# Cell 545 - threading

import threading

def print_nums_545():
    for j in range(6):
        print("Cell 545 - threading -", j)

thread_545 = threading.Thread(target=print_nums_545)
thread_545.start()
thread_545.join()
Cell 545 - threading - 0
Cell 545 - threading - 1
Cell 545 - threading - 2
Cell 545 - threading - 3
Cell 545 - threading - 4
Cell 545 - threading - 5
# Cell 546 - threading

import threading

def print_nums_546():
    for j in range(7):
        print("Cell 546 - threading -", j)

thread_546 = threading.Thread(target=print_nums_546)
thread_546.start()
thread_546.join()
Cell 546 - threading - 0
Cell 546 - threading - 1
Cell 546 - threading - 2
Cell 546 - threading - 3
Cell 546 - threading - 4
Cell 546 - threading - 5
Cell 546 - threading - 6
# Cell 547 - threading

import threading

def print_nums_547():
    for j in range(8):
        print("Cell 547 - threading -", j)

thread_547 = threading.Thread(target=print_nums_547)
thread_547.start()
thread_547.join()
Cell 547 - threading - 0
Cell 547 - threading - 1
Cell 547 - threading - 2
Cell 547 - threading - 3
Cell 547 - threading - 4
Cell 547 - threading - 5
Cell 547 - threading - 6
Cell 547 - threading - 7
# Cell 548 - threading

import threading

def print_nums_548():
    for j in range(9):
        print("Cell 548 - threading -", j)

thread_548 = threading.Thread(target=print_nums_548)
thread_548.start()
thread_548.join()
Cell 548 - threading - 0
Cell 548 - threading - 1
Cell 548 - threading - 2
Cell 548 - threading - 3
Cell 548 - threading - 4
Cell 548 - threading - 5
Cell 548 - threading - 6
Cell 548 - threading - 7
Cell 548 - threading - 8
# Cell 549 - threading

import threading

def print_nums_549():
    for j in range(10):
        print("Cell 549 - threading -", j)

thread_549 = threading.Thread(target=print_nums_549)
thread_549.start()
thread_549.join()
Cell 549 - threading - 0
Cell 549 - threading - 1
Cell 549 - threading - 2
Cell 549 - threading - 3
Cell 549 - threading - 4
Cell 549 - threading - 5
Cell 549 - threading - 6
Cell 549 - threading - 7
Cell 549 - threading - 8
Cell 549 - threading - 9
# Cell 550 - threading

import threading

def print_nums_550():
    for j in range(1):
        print("Cell 550 - threading -", j)

thread_550 = threading.Thread(target=print_nums_550)
thread_550.start()
thread_550.join()
Cell 550 - threading - 0
# Cell 551 - threading

import threading

def print_nums_551():
    for j in range(2):
        print("Cell 551 - threading -", j)

thread_551 = threading.Thread(target=print_nums_551)
thread_551.start()
thread_551.join()
Cell 551 - threading - 0
Cell 551 - threading - 1
# Cell 552 - threading

import threading

def print_nums_552():
    for j in range(3):
        print("Cell 552 - threading -", j)

thread_552 = threading.Thread(target=print_nums_552)
thread_552.start()
thread_552.join()
Cell 552 - threading - 0
Cell 552 - threading - 1
Cell 552 - threading - 2
# Cell 553 - threading

import threading

def print_nums_553():
    for j in range(4):
        print("Cell 553 - threading -", j)

thread_553 = threading.Thread(target=print_nums_553)
thread_553.start()
thread_553.join()
Cell 553 - threading - 0
Cell 553 - threading - 1
Cell 553 - threading - 2
Cell 553 - threading - 3
# Cell 554 - threading

import threading

def print_nums_554():
    for j in range(5):
        print("Cell 554 - threading -", j)

thread_554 = threading.Thread(target=print_nums_554)
thread_554.start()
thread_554.join()
Cell 554 - threading - 0
Cell 554 - threading - 1
Cell 554 - threading - 2
Cell 554 - threading - 3
Cell 554 - threading - 4
# Cell 555 - threading

import threading

def print_nums_555():
    for j in range(6):
        print("Cell 555 - threading -", j)

thread_555 = threading.Thread(target=print_nums_555)
thread_555.start()
thread_555.join()
Cell 555 - threading - 0
Cell 555 - threading - 1
Cell 555 - threading - 2
Cell 555 - threading - 3
Cell 555 - threading - 4
Cell 555 - threading - 5
# Cell 556 - threading

import threading

def print_nums_556():
    for j in range(7):
        print("Cell 556 - threading -", j)

thread_556 = threading.Thread(target=print_nums_556)
thread_556.start()
thread_556.join()
Cell 556 - threading - 0
Cell 556 - threading - 1
Cell 556 - threading - 2
Cell 556 - threading - 3
Cell 556 - threading - 4
Cell 556 - threading - 5
Cell 556 - threading - 6
# Cell 557 - threading

import threading

def print_nums_557():
    for j in range(8):
        print("Cell 557 - threading -", j)

thread_557 = threading.Thread(target=print_nums_557)
thread_557.start()
thread_557.join()
Cell 557 - threading - 0
Cell 557 - threading - 1
Cell 557 - threading - 2
Cell 557 - threading - 3
Cell 557 - threading - 4
Cell 557 - threading - 5
Cell 557 - threading - 6
Cell 557 - threading - 7
# Cell 558 - threading

import threading

def print_nums_558():
    for j in range(9):
        print("Cell 558 - threading -", j)

thread_558 = threading.Thread(target=print_nums_558)
thread_558.start()
thread_558.join()
Cell 558 - threading - 0
Cell 558 - threading - 1
Cell 558 - threading - 2
Cell 558 - threading - 3
Cell 558 - threading - 4
Cell 558 - threading - 5
Cell 558 - threading - 6
Cell 558 - threading - 7
Cell 558 - threading - 8
# Cell 559 - threading

import threading

def print_nums_559():
    for j in range(10):
        print("Cell 559 - threading -", j)

thread_559 = threading.Thread(target=print_nums_559)
thread_559.start()
thread_559.join()
Cell 559 - threading - 0
Cell 559 - threading - 1
Cell 559 - threading - 2
Cell 559 - threading - 3
Cell 559 - threading - 4
Cell 559 - threading - 5
Cell 559 - threading - 6
Cell 559 - threading - 7
Cell 559 - threading - 8
Cell 559 - threading - 9
# Cell 560 - threading

import threading

def print_nums_560():
    for j in range(1):
        print("Cell 560 - threading -", j)

thread_560 = threading.Thread(target=print_nums_560)
thread_560.start()
thread_560.join()
Cell 560 - threading - 0
# Cell 561 - threading

import threading

def print_nums_561():
    for j in range(2):
        print("Cell 561 - threading -", j)

thread_561 = threading.Thread(target=print_nums_561)
thread_561.start()
thread_561.join()
Cell 561 - threading - 0
Cell 561 - threading - 1
# Cell 562 - threading

import threading

def print_nums_562():
    for j in range(3):
        print("Cell 562 - threading -", j)

thread_562 = threading.Thread(target=print_nums_562)
thread_562.start()
thread_562.join()
Cell 562 - threading - 0
Cell 562 - threading - 1
Cell 562 - threading - 2
# Cell 563 - threading

import threading

def print_nums_563():
    for j in range(4):
        print("Cell 563 - threading -", j)

thread_563 = threading.Thread(target=print_nums_563)
thread_563.start()
thread_563.join()
Cell 563 - threading - 0
Cell 563 - threading - 1
Cell 563 - threading - 2
Cell 563 - threading - 3
# Cell 564 - threading

import threading

def print_nums_564():
    for j in range(5):
        print("Cell 564 - threading -", j)

thread_564 = threading.Thread(target=print_nums_564)
thread_564.start()
thread_564.join()
Cell 564 - threading - 0
Cell 564 - threading - 1
Cell 564 - threading - 2
Cell 564 - threading - 3
Cell 564 - threading - 4
# Cell 565 - threading

import threading

def print_nums_565():
    for j in range(6):
        print("Cell 565 - threading -", j)

thread_565 = threading.Thread(target=print_nums_565)
thread_565.start()
thread_565.join()
Cell 565 - threading - 0
Cell 565 - threading - 1
Cell 565 - threading - 2
Cell 565 - threading - 3
Cell 565 - threading - 4
Cell 565 - threading - 5
# Cell 566 - threading

import threading

def print_nums_566():
    for j in range(7):
        print("Cell 566 - threading -", j)

thread_566 = threading.Thread(target=print_nums_566)
thread_566.start()
thread_566.join()
Cell 566 - threading - 0
Cell 566 - threading - 1
Cell 566 - threading - 2
Cell 566 - threading - 3
Cell 566 - threading - 4
Cell 566 - threading - 5
Cell 566 - threading - 6
# Cell 567 - threading

import threading

def print_nums_567():
    for j in range(8):
        print("Cell 567 - threading -", j)

thread_567 = threading.Thread(target=print_nums_567)
thread_567.start()
thread_567.join()
Cell 567 - threading - 0
Cell 567 - threading - 1
Cell 567 - threading - 2
Cell 567 - threading - 3
Cell 567 - threading - 4
Cell 567 - threading - 5
Cell 567 - threading - 6
Cell 567 - threading - 7
# Cell 568 - threading

import threading

def print_nums_568():
    for j in range(9):
        print("Cell 568 - threading -", j)

thread_568 = threading.Thread(target=print_nums_568)
thread_568.start()
thread_568.join()
Cell 568 - threading - 0
Cell 568 - threading - 1
Cell 568 - threading - 2
Cell 568 - threading - 3
Cell 568 - threading - 4
Cell 568 - threading - 5
Cell 568 - threading - 6
Cell 568 - threading - 7
Cell 568 - threading - 8
# Cell 569 - threading

import threading

def print_nums_569():
    for j in range(10):
        print("Cell 569 - threading -", j)

thread_569 = threading.Thread(target=print_nums_569)
thread_569.start()
thread_569.join()
Cell 569 - threading - 0
Cell 569 - threading - 1
Cell 569 - threading - 2
Cell 569 - threading - 3
Cell 569 - threading - 4
Cell 569 - threading - 5
Cell 569 - threading - 6
Cell 569 - threading - 7
Cell 569 - threading - 8
Cell 569 - threading - 9
# Cell 570 - threading

import threading

def print_nums_570():
    for j in range(1):
        print("Cell 570 - threading -", j)

thread_570 = threading.Thread(target=print_nums_570)
thread_570.start()
thread_570.join()
Cell 570 - threading - 0
# Cell 571 - threading

import threading

def print_nums_571():
    for j in range(2):
        print("Cell 571 - threading -", j)

thread_571 = threading.Thread(target=print_nums_571)
thread_571.start()
thread_571.join()
Cell 571 - threading - 0
Cell 571 - threading - 1
# Cell 572 - threading

import threading

def print_nums_572():
    for j in range(3):
        print("Cell 572 - threading -", j)

thread_572 = threading.Thread(target=print_nums_572)
thread_572.start()
thread_572.join()
Cell 572 - threading - 0
Cell 572 - threading - 1
Cell 572 - threading - 2
# Cell 573 - threading

import threading

def print_nums_573():
    for j in range(4):
        print("Cell 573 - threading -", j)

thread_573 = threading.Thread(target=print_nums_573)
thread_573.start()
thread_573.join()
Cell 573 - threading - 0
Cell 573 - threading - 1
Cell 573 - threading - 2
Cell 573 - threading - 3
# Cell 574 - threading

import threading

def print_nums_574():
    for j in range(5):
        print("Cell 574 - threading -", j)

thread_574 = threading.Thread(target=print_nums_574)
thread_574.start()
thread_574.join()
Cell 574 - threading - 0
Cell 574 - threading - 1
Cell 574 - threading - 2
Cell 574 - threading - 3
Cell 574 - threading - 4
# Cell 575 - threading

import threading

def print_nums_575():
    for j in range(6):
        print("Cell 575 - threading -", j)

thread_575 = threading.Thread(target=print_nums_575)
thread_575.start()
thread_575.join()
Cell 575 - threading - 0
Cell 575 - threading - 1
Cell 575 - threading - 2
Cell 575 - threading - 3
Cell 575 - threading - 4
Cell 575 - threading - 5
# Cell 576 - threading

import threading

def print_nums_576():
    for j in range(7):
        print("Cell 576 - threading -", j)

thread_576 = threading.Thread(target=print_nums_576)
thread_576.start()
thread_576.join()
Cell 576 - threading - 0
Cell 576 - threading - 1
Cell 576 - threading - 2
Cell 576 - threading - 3
Cell 576 - threading - 4
Cell 576 - threading - 5
Cell 576 - threading - 6
# Cell 577 - threading

import threading

def print_nums_577():
    for j in range(8):
        print("Cell 577 - threading -", j)

thread_577 = threading.Thread(target=print_nums_577)
thread_577.start()
thread_577.join()
Cell 577 - threading - 0
Cell 577 - threading - 1
Cell 577 - threading - 2
Cell 577 - threading - 3
Cell 577 - threading - 4
Cell 577 - threading - 5
Cell 577 - threading - 6
Cell 577 - threading - 7
# Cell 578 - threading

import threading

def print_nums_578():
    for j in range(9):
        print("Cell 578 - threading -", j)

thread_578 = threading.Thread(target=print_nums_578)
thread_578.start()
thread_578.join()
Cell 578 - threading - 0
Cell 578 - threading - 1
Cell 578 - threading - 2
Cell 578 - threading - 3
Cell 578 - threading - 4
Cell 578 - threading - 5
Cell 578 - threading - 6
Cell 578 - threading - 7
Cell 578 - threading - 8
# Cell 579 - threading

import threading

def print_nums_579():
    for j in range(10):
        print("Cell 579 - threading -", j)

thread_579 = threading.Thread(target=print_nums_579)
thread_579.start()
thread_579.join()
Cell 579 - threading - 0
Cell 579 - threading - 1
Cell 579 - threading - 2
Cell 579 - threading - 3
Cell 579 - threading - 4
Cell 579 - threading - 5
Cell 579 - threading - 6
Cell 579 - threading - 7
Cell 579 - threading - 8
Cell 579 - threading - 9
# Cell 580 - threading

import threading

def print_nums_580():
    for j in range(1):
        print("Cell 580 - threading -", j)

thread_580 = threading.Thread(target=print_nums_580)
thread_580.start()
thread_580.join()
Cell 580 - threading - 0
# Cell 581 - threading

import threading

def print_nums_581():
    for j in range(2):
        print("Cell 581 - threading -", j)

thread_581 = threading.Thread(target=print_nums_581)
thread_581.start()
thread_581.join()
Cell 581 - threading - 0
Cell 581 - threading - 1
# Cell 582 - threading

import threading

def print_nums_582():
    for j in range(3):
        print("Cell 582 - threading -", j)

thread_582 = threading.Thread(target=print_nums_582)
thread_582.start()
thread_582.join()
Cell 582 - threading - 0
Cell 582 - threading - 1
Cell 582 - threading - 2
# Cell 583 - threading

import threading

def print_nums_583():
    for j in range(4):
        print("Cell 583 - threading -", j)

thread_583 = threading.Thread(target=print_nums_583)
thread_583.start()
thread_583.join()
Cell 583 - threading - 0
Cell 583 - threading - 1
Cell 583 - threading - 2
Cell 583 - threading - 3
# Cell 584 - threading

import threading

def print_nums_584():
    for j in range(5):
        print("Cell 584 - threading -", j)

thread_584 = threading.Thread(target=print_nums_584)
thread_584.start()
thread_584.join()
Cell 584 - threading - 0
Cell 584 - threading - 1
Cell 584 - threading - 2
Cell 584 - threading - 3
Cell 584 - threading - 4
# Cell 585 - threading

import threading

def print_nums_585():
    for j in range(6):
        print("Cell 585 - threading -", j)

thread_585 = threading.Thread(target=print_nums_585)
thread_585.start()
thread_585.join()
Cell 585 - threading - 0
Cell 585 - threading - 1
Cell 585 - threading - 2
Cell 585 - threading - 3
Cell 585 - threading - 4
Cell 585 - threading - 5
# Cell 586 - threading

import threading

def print_nums_586():
    for j in range(7):
        print("Cell 586 - threading -", j)

thread_586 = threading.Thread(target=print_nums_586)
thread_586.start()
thread_586.join()
Cell 586 - threading - 0
Cell 586 - threading - 1
Cell 586 - threading - 2
Cell 586 - threading - 3
Cell 586 - threading - 4
Cell 586 - threading - 5
Cell 586 - threading - 6
# Cell 587 - threading

import threading

def print_nums_587():
    for j in range(8):
        print("Cell 587 - threading -", j)

thread_587 = threading.Thread(target=print_nums_587)
thread_587.start()
thread_587.join()
Cell 587 - threading - 0
Cell 587 - threading - 1
Cell 587 - threading - 2
Cell 587 - threading - 3
Cell 587 - threading - 4
Cell 587 - threading - 5
Cell 587 - threading - 6
Cell 587 - threading - 7
# Cell 588 - threading

import threading

def print_nums_588():
    for j in range(9):
        print("Cell 588 - threading -", j)

thread_588 = threading.Thread(target=print_nums_588)
thread_588.start()
thread_588.join()
Cell 588 - threading - 0
Cell 588 - threading - 1
Cell 588 - threading - 2
Cell 588 - threading - 3
Cell 588 - threading - 4
Cell 588 - threading - 5
Cell 588 - threading - 6
Cell 588 - threading - 7
Cell 588 - threading - 8
# Cell 589 - threading

import threading

def print_nums_589():
    for j in range(10):
        print("Cell 589 - threading -", j)

thread_589 = threading.Thread(target=print_nums_589)
thread_589.start()
thread_589.join()
Cell 589 - threading - 0
Cell 589 - threading - 1
Cell 589 - threading - 2
Cell 589 - threading - 3
Cell 589 - threading - 4
Cell 589 - threading - 5
Cell 589 - threading - 6
Cell 589 - threading - 7
Cell 589 - threading - 8
Cell 589 - threading - 9
# Cell 590 - threading

import threading

def print_nums_590():
    for j in range(1):
        print("Cell 590 - threading -", j)

thread_590 = threading.Thread(target=print_nums_590)
thread_590.start()
thread_590.join()
Cell 590 - threading - 0
# Cell 591 - threading

import threading

def print_nums_591():
    for j in range(2):
        print("Cell 591 - threading -", j)

thread_591 = threading.Thread(target=print_nums_591)
thread_591.start()
thread_591.join()
Cell 591 - threading - 0
Cell 591 - threading - 1
# Cell 592 - threading

import threading

def print_nums_592():
    for j in range(3):
        print("Cell 592 - threading -", j)

thread_592 = threading.Thread(target=print_nums_592)
thread_592.start()
thread_592.join()
Cell 592 - threading - 0
Cell 592 - threading - 1
Cell 592 - threading - 2
# Cell 593 - threading

import threading

def print_nums_593():
    for j in range(4):
        print("Cell 593 - threading -", j)

thread_593 = threading.Thread(target=print_nums_593)
thread_593.start()
thread_593.join()
Cell 593 - threading - 0
Cell 593 - threading - 1
Cell 593 - threading - 2
Cell 593 - threading - 3
# Cell 594 - threading

import threading

def print_nums_594():
    for j in range(5):
        print("Cell 594 - threading -", j)

thread_594 = threading.Thread(target=print_nums_594)
thread_594.start()
thread_594.join()
Cell 594 - threading - 0
Cell 594 - threading - 1
Cell 594 - threading - 2
Cell 594 - threading - 3
Cell 594 - threading - 4
# Cell 595 - threading

import threading

def print_nums_595():
    for j in range(6):
        print("Cell 595 - threading -", j)

thread_595 = threading.Thread(target=print_nums_595)
thread_595.start()
thread_595.join()
Cell 595 - threading - 0
Cell 595 - threading - 1
Cell 595 - threading - 2
Cell 595 - threading - 3
Cell 595 - threading - 4
Cell 595 - threading - 5
# Cell 596 - threading

import threading

def print_nums_596():
    for j in range(7):
        print("Cell 596 - threading -", j)

thread_596 = threading.Thread(target=print_nums_596)
thread_596.start()
thread_596.join()
Cell 596 - threading - 0
Cell 596 - threading - 1
Cell 596 - threading - 2
Cell 596 - threading - 3
Cell 596 - threading - 4
Cell 596 - threading - 5
Cell 596 - threading - 6
# Cell 597 - threading

import threading

def print_nums_597():
    for j in range(8):
        print("Cell 597 - threading -", j)

thread_597 = threading.Thread(target=print_nums_597)
thread_597.start()
thread_597.join()
Cell 597 - threading - 0
Cell 597 - threading - 1
Cell 597 - threading - 2
Cell 597 - threading - 3
Cell 597 - threading - 4
Cell 597 - threading - 5
Cell 597 - threading - 6
Cell 597 - threading - 7
# Cell 598 - threading

import threading

def print_nums_598():
    for j in range(9):
        print("Cell 598 - threading -", j)

thread_598 = threading.Thread(target=print_nums_598)
thread_598.start()
thread_598.join()
Cell 598 - threading - 0
Cell 598 - threading - 1
Cell 598 - threading - 2
Cell 598 - threading - 3
Cell 598 - threading - 4
Cell 598 - threading - 5
Cell 598 - threading - 6
Cell 598 - threading - 7
Cell 598 - threading - 8
# Cell 599 - threading

import threading

def print_nums_599():
    for j in range(10):
        print("Cell 599 - threading -", j)

thread_599 = threading.Thread(target=print_nums_599)
thread_599.start()
thread_599.join()
Cell 599 - threading - 0
Cell 599 - threading - 1
Cell 599 - threading - 2
Cell 599 - threading - 3
Cell 599 - threading - 4
Cell 599 - threading - 5
Cell 599 - threading - 6
Cell 599 - threading - 7
Cell 599 - threading - 8
Cell 599 - threading - 9
# Cell 600 - threading

import threading

def print_nums_600():
    for j in range(1):
        print("Cell 600 - threading -", j)

thread_600 = threading.Thread(target=print_nums_600)
thread_600.start()
thread_600.join()
Cell 600 - threading - 0
# Cell 601 - threading

import threading

def print_nums_601():
    for j in range(2):
        print("Cell 601 - threading -", j)

thread_601 = threading.Thread(target=print_nums_601)
thread_601.start()
thread_601.join()
Cell 601 - threading - 0
Cell 601 - threading - 1
# Cell 602 - threading

import threading

def print_nums_602():
    for j in range(3):
        print("Cell 602 - threading -", j)

thread_602 = threading.Thread(target=print_nums_602)
thread_602.start()
thread_602.join()
Cell 602 - threading - 0
Cell 602 - threading - 1
Cell 602 - threading - 2
# Cell 603 - threading

import threading

def print_nums_603():
    for j in range(4):
        print("Cell 603 - threading -", j)

thread_603 = threading.Thread(target=print_nums_603)
thread_603.start()
thread_603.join()
Cell 603 - threading - 0
Cell 603 - threading - 1
Cell 603 - threading - 2
Cell 603 - threading - 3
# Cell 604 - threading

import threading

def print_nums_604():
    for j in range(5):
        print("Cell 604 - threading -", j)

thread_604 = threading.Thread(target=print_nums_604)
thread_604.start()
thread_604.join()
Cell 604 - threading - 0
Cell 604 - threading - 1
Cell 604 - threading - 2
Cell 604 - threading - 3
Cell 604 - threading - 4
# Cell 605 - threading

import threading

def print_nums_605():
    for j in range(6):
        print("Cell 605 - threading -", j)

thread_605 = threading.Thread(target=print_nums_605)
thread_605.start()
thread_605.join()
Cell 605 - threading - 0
Cell 605 - threading - 1
Cell 605 - threading - 2
Cell 605 - threading - 3
Cell 605 - threading - 4
Cell 605 - threading - 5
# Cell 606 - threading

import threading

def print_nums_606():
    for j in range(7):
        print("Cell 606 - threading -", j)

thread_606 = threading.Thread(target=print_nums_606)
thread_606.start()
thread_606.join()
Cell 606 - threading - 0
Cell 606 - threading - 1
Cell 606 - threading - 2
Cell 606 - threading - 3
Cell 606 - threading - 4
Cell 606 - threading - 5
Cell 606 - threading - 6
# Cell 607 - threading

import threading

def print_nums_607():
    for j in range(8):
        print("Cell 607 - threading -", j)

thread_607 = threading.Thread(target=print_nums_607)
thread_607.start()
thread_607.join()
Cell 607 - threading - 0
Cell 607 - threading - 1
Cell 607 - threading - 2
Cell 607 - threading - 3
Cell 607 - threading - 4
Cell 607 - threading - 5
Cell 607 - threading - 6
Cell 607 - threading - 7
# Cell 608 - threading

import threading

def print_nums_608():
    for j in range(9):
        print("Cell 608 - threading -", j)

thread_608 = threading.Thread(target=print_nums_608)
thread_608.start()
thread_608.join()
Cell 608 - threading - 0
Cell 608 - threading - 1
Cell 608 - threading - 2
Cell 608 - threading - 3
Cell 608 - threading - 4
Cell 608 - threading - 5
Cell 608 - threading - 6
Cell 608 - threading - 7
Cell 608 - threading - 8
# Cell 609 - threading

import threading

def print_nums_609():
    for j in range(10):
        print("Cell 609 - threading -", j)

thread_609 = threading.Thread(target=print_nums_609)
thread_609.start()
thread_609.join()
Cell 609 - threading - 0
Cell 609 - threading - 1
Cell 609 - threading - 2
Cell 609 - threading - 3
Cell 609 - threading - 4
Cell 609 - threading - 5
Cell 609 - threading - 6
Cell 609 - threading - 7
Cell 609 - threading - 8
Cell 609 - threading - 9
# Cell 610 - threading

import threading

def print_nums_610():
    for j in range(1):
        print("Cell 610 - threading -", j)

thread_610 = threading.Thread(target=print_nums_610)
thread_610.start()
thread_610.join()
Cell 610 - threading - 0
# Cell 611 - threading

import threading

def print_nums_611():
    for j in range(2):
        print("Cell 611 - threading -", j)

thread_611 = threading.Thread(target=print_nums_611)
thread_611.start()
thread_611.join()
Cell 611 - threading - 0
Cell 611 - threading - 1
# Cell 612 - threading

import threading

def print_nums_612():
    for j in range(3):
        print("Cell 612 - threading -", j)

thread_612 = threading.Thread(target=print_nums_612)
thread_612.start()
thread_612.join()
Cell 612 - threading - 0
Cell 612 - threading - 1
Cell 612 - threading - 2
# Cell 613 - threading

import threading

def print_nums_613():
    for j in range(4):
        print("Cell 613 - threading -", j)

thread_613 = threading.Thread(target=print_nums_613)
thread_613.start()
thread_613.join()
Cell 613 - threading - 0
Cell 613 - threading - 1
Cell 613 - threading - 2
Cell 613 - threading - 3
# Cell 614 - threading

import threading

def print_nums_614():
    for j in range(5):
        print("Cell 614 - threading -", j)

thread_614 = threading.Thread(target=print_nums_614)
thread_614.start()
thread_614.join()
Cell 614 - threading - 0
Cell 614 - threading - 1
Cell 614 - threading - 2
Cell 614 - threading - 3
Cell 614 - threading - 4
# Cell 615 - threading

import threading

def print_nums_615():
    for j in range(6):
        print("Cell 615 - threading -", j)

thread_615 = threading.Thread(target=print_nums_615)
thread_615.start()
thread_615.join()
Cell 615 - threading - 0
Cell 615 - threading - 1
Cell 615 - threading - 2
Cell 615 - threading - 3
Cell 615 - threading - 4
Cell 615 - threading - 5
# Cell 616 - threading

import threading

def print_nums_616():
    for j in range(7):
        print("Cell 616 - threading -", j)

thread_616 = threading.Thread(target=print_nums_616)
thread_616.start()
thread_616.join()
Cell 616 - threading - 0
Cell 616 - threading - 1
Cell 616 - threading - 2
Cell 616 - threading - 3
Cell 616 - threading - 4
Cell 616 - threading - 5
Cell 616 - threading - 6
# Cell 617 - threading

import threading

def print_nums_617():
    for j in range(8):
        print("Cell 617 - threading -", j)

thread_617 = threading.Thread(target=print_nums_617)
thread_617.start()
thread_617.join()
Cell 617 - threading - 0
Cell 617 - threading - 1
Cell 617 - threading - 2
Cell 617 - threading - 3
Cell 617 - threading - 4
Cell 617 - threading - 5
Cell 617 - threading - 6
Cell 617 - threading - 7
# Cell 618 - threading

import threading

def print_nums_618():
    for j in range(9):
        print("Cell 618 - threading -", j)

thread_618 = threading.Thread(target=print_nums_618)
thread_618.start()
thread_618.join()
Cell 618 - threading - 0
Cell 618 - threading - 1
Cell 618 - threading - 2
Cell 618 - threading - 3
Cell 618 - threading - 4
Cell 618 - threading - 5
Cell 618 - threading - 6
Cell 618 - threading - 7
Cell 618 - threading - 8
# Cell 619 - threading

import threading

def print_nums_619():
    for j in range(10):
        print("Cell 619 - threading -", j)

thread_619 = threading.Thread(target=print_nums_619)
thread_619.start()
thread_619.join()
Cell 619 - threading - 0
Cell 619 - threading - 1
Cell 619 - threading - 2
Cell 619 - threading - 3
Cell 619 - threading - 4
Cell 619 - threading - 5
Cell 619 - threading - 6
Cell 619 - threading - 7
Cell 619 - threading - 8
Cell 619 - threading - 9
# Cell 620 - threading

import threading

def print_nums_620():
    for j in range(1):
        print("Cell 620 - threading -", j)

thread_620 = threading.Thread(target=print_nums_620)
thread_620.start()
thread_620.join()
Cell 620 - threading - 0
# Cell 621 - threading

import threading

def print_nums_621():
    for j in range(2):
        print("Cell 621 - threading -", j)

thread_621 = threading.Thread(target=print_nums_621)
thread_621.start()
thread_621.join()
Cell 621 - threading - 0
Cell 621 - threading - 1
# Cell 622 - threading

import threading

def print_nums_622():
    for j in range(3):
        print("Cell 622 - threading -", j)

thread_622 = threading.Thread(target=print_nums_622)
thread_622.start()
thread_622.join()
Cell 622 - threading - 0
Cell 622 - threading - 1
Cell 622 - threading - 2
# Cell 623 - threading

import threading

def print_nums_623():
    for j in range(4):
        print("Cell 623 - threading -", j)

thread_623 = threading.Thread(target=print_nums_623)
thread_623.start()
thread_623.join()
Cell 623 - threading - 0
Cell 623 - threading - 1
Cell 623 - threading - 2
Cell 623 - threading - 3
# Cell 624 - threading

import threading

def print_nums_624():
    for j in range(5):
        print("Cell 624 - threading -", j)

thread_624 = threading.Thread(target=print_nums_624)
thread_624.start()
thread_624.join()
Cell 624 - threading - 0
Cell 624 - threading - 1
Cell 624 - threading - 2
Cell 624 - threading - 3
Cell 624 - threading - 4
# Cell 625 - threading

import threading

def print_nums_625():
    for j in range(6):
        print("Cell 625 - threading -", j)

thread_625 = threading.Thread(target=print_nums_625)
thread_625.start()
thread_625.join()
Cell 625 - threading - 0
Cell 625 - threading - 1
Cell 625 - threading - 2
Cell 625 - threading - 3
Cell 625 - threading - 4
Cell 625 - threading - 5
# Cell 626 - threading

import threading

def print_nums_626():
    for j in range(7):
        print("Cell 626 - threading -", j)

thread_626 = threading.Thread(target=print_nums_626)
thread_626.start()
thread_626.join()
Cell 626 - threading - 0
Cell 626 - threading - 1
Cell 626 - threading - 2
Cell 626 - threading - 3
Cell 626 - threading - 4
Cell 626 - threading - 5
Cell 626 - threading - 6
# Cell 627 - threading

import threading

def print_nums_627():
    for j in range(8):
        print("Cell 627 - threading -", j)

thread_627 = threading.Thread(target=print_nums_627)
thread_627.start()
thread_627.join()
Cell 627 - threading - 0
Cell 627 - threading - 1
Cell 627 - threading - 2
Cell 627 - threading - 3
Cell 627 - threading - 4
Cell 627 - threading - 5
Cell 627 - threading - 6
Cell 627 - threading - 7
# Cell 628 - threading

import threading

def print_nums_628():
    for j in range(9):
        print("Cell 628 - threading -", j)

thread_628 = threading.Thread(target=print_nums_628)
thread_628.start()
thread_628.join()
Cell 628 - threading - 0
Cell 628 - threading - 1
Cell 628 - threading - 2
Cell 628 - threading - 3
Cell 628 - threading - 4
Cell 628 - threading - 5
Cell 628 - threading - 6
Cell 628 - threading - 7
Cell 628 - threading - 8
# Cell 629 - threading

import threading

def print_nums_629():
    for j in range(10):
        print("Cell 629 - threading -", j)

thread_629 = threading.Thread(target=print_nums_629)
thread_629.start()
thread_629.join()
Cell 629 - threading - 0
Cell 629 - threading - 1
Cell 629 - threading - 2
Cell 629 - threading - 3
Cell 629 - threading - 4
Cell 629 - threading - 5
Cell 629 - threading - 6
Cell 629 - threading - 7
Cell 629 - threading - 8
Cell 629 - threading - 9
# Cell 630 - threading

import threading

def print_nums_630():
    for j in range(1):
        print("Cell 630 - threading -", j)

thread_630 = threading.Thread(target=print_nums_630)
thread_630.start()
thread_630.join()
Cell 630 - threading - 0
# Cell 631 - threading

import threading

def print_nums_631():
    for j in range(2):
        print("Cell 631 - threading -", j)

thread_631 = threading.Thread(target=print_nums_631)
thread_631.start()
thread_631.join()
Cell 631 - threading - 0
Cell 631 - threading - 1
# Cell 632 - threading

import threading

def print_nums_632():
    for j in range(3):
        print("Cell 632 - threading -", j)

thread_632 = threading.Thread(target=print_nums_632)
thread_632.start()
thread_632.join()
Cell 632 - threading - 0
Cell 632 - threading - 1
Cell 632 - threading - 2
# Cell 633 - threading

import threading

def print_nums_633():
    for j in range(4):
        print("Cell 633 - threading -", j)

thread_633 = threading.Thread(target=print_nums_633)
thread_633.start()
thread_633.join()
Cell 633 - threading - 0
Cell 633 - threading - 1
Cell 633 - threading - 2
Cell 633 - threading - 3
# Cell 634 - threading

import threading

def print_nums_634():
    for j in range(5):
        print("Cell 634 - threading -", j)

thread_634 = threading.Thread(target=print_nums_634)
thread_634.start()
thread_634.join()
Cell 634 - threading - 0
Cell 634 - threading - 1
Cell 634 - threading - 2
Cell 634 - threading - 3
Cell 634 - threading - 4
# Cell 635 - threading

import threading

def print_nums_635():
    for j in range(6):
        print("Cell 635 - threading -", j)

thread_635 = threading.Thread(target=print_nums_635)
thread_635.start()
thread_635.join()
Cell 635 - threading - 0
Cell 635 - threading - 1
Cell 635 - threading - 2
Cell 635 - threading - 3
Cell 635 - threading - 4
Cell 635 - threading - 5
# Cell 636 - threading

import threading

def print_nums_636():
    for j in range(7):
        print("Cell 636 - threading -", j)

thread_636 = threading.Thread(target=print_nums_636)
thread_636.start()
thread_636.join()
Cell 636 - threading - 0
Cell 636 - threading - 1
Cell 636 - threading - 2
Cell 636 - threading - 3
Cell 636 - threading - 4
Cell 636 - threading - 5
Cell 636 - threading - 6
# Cell 637 - threading

import threading

def print_nums_637():
    for j in range(8):
        print("Cell 637 - threading -", j)

thread_637 = threading.Thread(target=print_nums_637)
thread_637.start()
thread_637.join()
Cell 637 - threading - 0
Cell 637 - threading - 1
Cell 637 - threading - 2
Cell 637 - threading - 3
Cell 637 - threading - 4
Cell 637 - threading - 5
Cell 637 - threading - 6
Cell 637 - threading - 7
# Cell 638 - threading

import threading

def print_nums_638():
    for j in range(9):
        print("Cell 638 - threading -", j)

thread_638 = threading.Thread(target=print_nums_638)
thread_638.start()
thread_638.join()
Cell 638 - threading - 0
Cell 638 - threading - 1
Cell 638 - threading - 2
Cell 638 - threading - 3
Cell 638 - threading - 4
Cell 638 - threading - 5
Cell 638 - threading - 6
Cell 638 - threading - 7
Cell 638 - threading - 8
# Cell 639 - threading

import threading

def print_nums_639():
    for j in range(10):
        print("Cell 639 - threading -", j)

thread_639 = threading.Thread(target=print_nums_639)
thread_639.start()
thread_639.join()
Cell 639 - threading - 0
Cell 639 - threading - 1
Cell 639 - threading - 2
Cell 639 - threading - 3
Cell 639 - threading - 4
Cell 639 - threading - 5
Cell 639 - threading - 6
Cell 639 - threading - 7
Cell 639 - threading - 8
Cell 639 - threading - 9
# Cell 640 - threading

import threading

def print_nums_640():
    for j in range(1):
        print("Cell 640 - threading -", j)

thread_640 = threading.Thread(target=print_nums_640)
thread_640.start()
thread_640.join()
Cell 640 - threading - 0
# Cell 641 - threading

import threading

def print_nums_641():
    for j in range(2):
        print("Cell 641 - threading -", j)

thread_641 = threading.Thread(target=print_nums_641)
thread_641.start()
thread_641.join()
Cell 641 - threading - 0
Cell 641 - threading - 1
# Cell 642 - threading

import threading

def print_nums_642():
    for j in range(3):
        print("Cell 642 - threading -", j)

thread_642 = threading.Thread(target=print_nums_642)
thread_642.start()
thread_642.join()
Cell 642 - threading - 0
Cell 642 - threading - 1
Cell 642 - threading - 2
# Cell 643 - threading

import threading

def print_nums_643():
    for j in range(4):
        print("Cell 643 - threading -", j)

thread_643 = threading.Thread(target=print_nums_643)
thread_643.start()
thread_643.join()
Cell 643 - threading - 0
Cell 643 - threading - 1
Cell 643 - threading - 2
Cell 643 - threading - 3
# Cell 644 - threading

import threading

def print_nums_644():
    for j in range(5):
        print("Cell 644 - threading -", j)

thread_644 = threading.Thread(target=print_nums_644)
thread_644.start()
thread_644.join()
Cell 644 - threading - 0
Cell 644 - threading - 1
Cell 644 - threading - 2
Cell 644 - threading - 3
Cell 644 - threading - 4
# Cell 645 - threading

import threading

def print_nums_645():
    for j in range(6):
        print("Cell 645 - threading -", j)

thread_645 = threading.Thread(target=print_nums_645)
thread_645.start()
thread_645.join()
Cell 645 - threading - 0
Cell 645 - threading - 1
Cell 645 - threading - 2
Cell 645 - threading - 3
Cell 645 - threading - 4
Cell 645 - threading - 5
# Cell 646 - threading

import threading

def print_nums_646():
    for j in range(7):
        print("Cell 646 - threading -", j)

thread_646 = threading.Thread(target=print_nums_646)
thread_646.start()
thread_646.join()
Cell 646 - threading - 0
Cell 646 - threading - 1
Cell 646 - threading - 2
Cell 646 - threading - 3
Cell 646 - threading - 4
Cell 646 - threading - 5
Cell 646 - threading - 6
# Cell 647 - threading

import threading

def print_nums_647():
    for j in range(8):
        print("Cell 647 - threading -", j)

thread_647 = threading.Thread(target=print_nums_647)
thread_647.start()
thread_647.join()
Cell 647 - threading - 0
Cell 647 - threading - 1
Cell 647 - threading - 2
Cell 647 - threading - 3
Cell 647 - threading - 4
Cell 647 - threading - 5
Cell 647 - threading - 6
Cell 647 - threading - 7
# Cell 648 - threading

import threading

def print_nums_648():
    for j in range(9):
        print("Cell 648 - threading -", j)

thread_648 = threading.Thread(target=print_nums_648)
thread_648.start()
thread_648.join()
Cell 648 - threading - 0
Cell 648 - threading - 1
Cell 648 - threading - 2
Cell 648 - threading - 3
Cell 648 - threading - 4
Cell 648 - threading - 5
Cell 648 - threading - 6
Cell 648 - threading - 7
Cell 648 - threading - 8
# Cell 649 - threading

import threading

def print_nums_649():
    for j in range(10):
        print("Cell 649 - threading -", j)

thread_649 = threading.Thread(target=print_nums_649)
thread_649.start()
thread_649.join()
Cell 649 - threading - 0
Cell 649 - threading - 1
Cell 649 - threading - 2
Cell 649 - threading - 3
Cell 649 - threading - 4
Cell 649 - threading - 5
Cell 649 - threading - 6
Cell 649 - threading - 7
Cell 649 - threading - 8
Cell 649 - threading - 9
# Cell 650 - threading

import threading

def print_nums_650():
    for j in range(1):
        print("Cell 650 - threading -", j)

thread_650 = threading.Thread(target=print_nums_650)
thread_650.start()
thread_650.join()
Cell 650 - threading - 0
# Cell 651 - threading

import threading

def print_nums_651():
    for j in range(2):
        print("Cell 651 - threading -", j)

thread_651 = threading.Thread(target=print_nums_651)
thread_651.start()
thread_651.join()
Cell 651 - threading - 0
Cell 651 - threading - 1
# Cell 652 - threading

import threading

def print_nums_652():
    for j in range(3):
        print("Cell 652 - threading -", j)

thread_652 = threading.Thread(target=print_nums_652)
thread_652.start()
thread_652.join()
Cell 652 - threading - 0
Cell 652 - threading - 1
Cell 652 - threading - 2
# Cell 653 - threading

import threading

def print_nums_653():
    for j in range(4):
        print("Cell 653 - threading -", j)

thread_653 = threading.Thread(target=print_nums_653)
thread_653.start()
thread_653.join()
Cell 653 - threading - 0
Cell 653 - threading - 1
Cell 653 - threading - 2
Cell 653 - threading - 3
# Cell 654 - threading

import threading

def print_nums_654():
    for j in range(5):
        print("Cell 654 - threading -", j)

thread_654 = threading.Thread(target=print_nums_654)
thread_654.start()
thread_654.join()
Cell 654 - threading - 0
Cell 654 - threading - 1
Cell 654 - threading - 2
Cell 654 - threading - 3
Cell 654 - threading - 4
# Cell 655 - threading

import threading

def print_nums_655():
    for j in range(6):
        print("Cell 655 - threading -", j)

thread_655 = threading.Thread(target=print_nums_655)
thread_655.start()
thread_655.join()
Cell 655 - threading - 0
Cell 655 - threading - 1
Cell 655 - threading - 2
Cell 655 - threading - 3
Cell 655 - threading - 4
Cell 655 - threading - 5
# Cell 656 - threading

import threading

def print_nums_656():
    for j in range(7):
        print("Cell 656 - threading -", j)

thread_656 = threading.Thread(target=print_nums_656)
thread_656.start()
thread_656.join()
Cell 656 - threading - 0
Cell 656 - threading - 1
Cell 656 - threading - 2
Cell 656 - threading - 3
Cell 656 - threading - 4
Cell 656 - threading - 5
Cell 656 - threading - 6
# Cell 657 - threading

import threading

def print_nums_657():
    for j in range(8):
        print("Cell 657 - threading -", j)

thread_657 = threading.Thread(target=print_nums_657)
thread_657.start()
thread_657.join()
Cell 657 - threading - 0
Cell 657 - threading - 1
Cell 657 - threading - 2
Cell 657 - threading - 3
Cell 657 - threading - 4
Cell 657 - threading - 5
Cell 657 - threading - 6
Cell 657 - threading - 7
# Cell 658 - threading

import threading

def print_nums_658():
    for j in range(9):
        print("Cell 658 - threading -", j)

thread_658 = threading.Thread(target=print_nums_658)
thread_658.start()
thread_658.join()
Cell 658 - threading - 0
Cell 658 - threading - 1
Cell 658 - threading - 2
Cell 658 - threading - 3
Cell 658 - threading - 4
Cell 658 - threading - 5
Cell 658 - threading - 6
Cell 658 - threading - 7
Cell 658 - threading - 8
# Cell 659 - threading

import threading

def print_nums_659():
    for j in range(10):
        print("Cell 659 - threading -", j)

thread_659 = threading.Thread(target=print_nums_659)
thread_659.start()
thread_659.join()
Cell 659 - threading - 0
Cell 659 - threading - 1
Cell 659 - threading - 2
Cell 659 - threading - 3
Cell 659 - threading - 4
Cell 659 - threading - 5
Cell 659 - threading - 6
Cell 659 - threading - 7
Cell 659 - threading - 8
Cell 659 - threading - 9
# Cell 660 - threading

import threading

def print_nums_660():
    for j in range(1):
        print("Cell 660 - threading -", j)

thread_660 = threading.Thread(target=print_nums_660)
thread_660.start()
thread_660.join()
Cell 660 - threading - 0
# Cell 661 - threading

import threading

def print_nums_661():
    for j in range(2):
        print("Cell 661 - threading -", j)

thread_661 = threading.Thread(target=print_nums_661)
thread_661.start()
thread_661.join()
Cell 661 - threading - 0
Cell 661 - threading - 1
# Cell 662 - threading

import threading

def print_nums_662():
    for j in range(3):
        print("Cell 662 - threading -", j)

thread_662 = threading.Thread(target=print_nums_662)
thread_662.start()
thread_662.join()
Cell 662 - threading - 0
Cell 662 - threading - 1
Cell 662 - threading - 2
# Cell 663 - threading

import threading

def print_nums_663():
    for j in range(4):
        print("Cell 663 - threading -", j)

thread_663 = threading.Thread(target=print_nums_663)
thread_663.start()
thread_663.join()
Cell 663 - threading - 0
Cell 663 - threading - 1
Cell 663 - threading - 2
Cell 663 - threading - 3
# Cell 664 - threading

import threading

def print_nums_664():
    for j in range(5):
        print("Cell 664 - threading -", j)

thread_664 = threading.Thread(target=print_nums_664)
thread_664.start()
thread_664.join()
Cell 664 - threading - 0
Cell 664 - threading - 1
Cell 664 - threading - 2
Cell 664 - threading - 3
Cell 664 - threading - 4
# Cell 665 - threading

import threading

def print_nums_665():
    for j in range(6):
        print("Cell 665 - threading -", j)

thread_665 = threading.Thread(target=print_nums_665)
thread_665.start()
thread_665.join()
Cell 665 - threading - 0
Cell 665 - threading - 1
Cell 665 - threading - 2
Cell 665 - threading - 3
Cell 665 - threading - 4
Cell 665 - threading - 5
# Cell 666 - threading

import threading

def print_nums_666():
    for j in range(7):
        print("Cell 666 - threading -", j)

thread_666 = threading.Thread(target=print_nums_666)
thread_666.start()
thread_666.join()
Cell 666 - threading - 0
Cell 666 - threading - 1
Cell 666 - threading - 2
Cell 666 - threading - 3
Cell 666 - threading - 4
Cell 666 - threading - 5
Cell 666 - threading - 6
# Cell 667 - threading

import threading

def print_nums_667():
    for j in range(8):
        print("Cell 667 - threading -", j)

thread_667 = threading.Thread(target=print_nums_667)
thread_667.start()
thread_667.join()
Cell 667 - threading - 0
Cell 667 - threading - 1
Cell 667 - threading - 2
Cell 667 - threading - 3
Cell 667 - threading - 4
Cell 667 - threading - 5
Cell 667 - threading - 6
Cell 667 - threading - 7
# Cell 668 - threading

import threading

def print_nums_668():
    for j in range(9):
        print("Cell 668 - threading -", j)

thread_668 = threading.Thread(target=print_nums_668)
thread_668.start()
thread_668.join()
Cell 668 - threading - 0
Cell 668 - threading - 1
Cell 668 - threading - 2
Cell 668 - threading - 3
Cell 668 - threading - 4
Cell 668 - threading - 5
Cell 668 - threading - 6
Cell 668 - threading - 7
Cell 668 - threading - 8
# Cell 669 - threading

import threading

def print_nums_669():
    for j in range(10):
        print("Cell 669 - threading -", j)

thread_669 = threading.Thread(target=print_nums_669)
thread_669.start()
thread_669.join()
Cell 669 - threading - 0
Cell 669 - threading - 1
Cell 669 - threading - 2
Cell 669 - threading - 3
Cell 669 - threading - 4
Cell 669 - threading - 5
Cell 669 - threading - 6
Cell 669 - threading - 7
Cell 669 - threading - 8
Cell 669 - threading - 9
# Cell 670 - threading

import threading

def print_nums_670():
    for j in range(1):
        print("Cell 670 - threading -", j)

thread_670 = threading.Thread(target=print_nums_670)
thread_670.start()
thread_670.join()
Cell 670 - threading - 0
# Cell 671 - threading

import threading

def print_nums_671():
    for j in range(2):
        print("Cell 671 - threading -", j)

thread_671 = threading.Thread(target=print_nums_671)
thread_671.start()
thread_671.join()
Cell 671 - threading - 0
Cell 671 - threading - 1
# Cell 672 - threading

import threading

def print_nums_672():
    for j in range(3):
        print("Cell 672 - threading -", j)

thread_672 = threading.Thread(target=print_nums_672)
thread_672.start()
thread_672.join()
Cell 672 - threading - 0
Cell 672 - threading - 1
Cell 672 - threading - 2
# Cell 673 - threading

import threading

def print_nums_673():
    for j in range(4):
        print("Cell 673 - threading -", j)

thread_673 = threading.Thread(target=print_nums_673)
thread_673.start()
thread_673.join()
Cell 673 - threading - 0
Cell 673 - threading - 1
Cell 673 - threading - 2
Cell 673 - threading - 3
# Cell 674 - threading

import threading

def print_nums_674():
    for j in range(5):
        print("Cell 674 - threading -", j)

thread_674 = threading.Thread(target=print_nums_674)
thread_674.start()
thread_674.join()
Cell 674 - threading - 0
Cell 674 - threading - 1
Cell 674 - threading - 2
Cell 674 - threading - 3
Cell 674 - threading - 4
# Cell 675 - threading

import threading

def print_nums_675():
    for j in range(6):
        print("Cell 675 - threading -", j)

thread_675 = threading.Thread(target=print_nums_675)
thread_675.start()
thread_675.join()
Cell 675 - threading - 0
Cell 675 - threading - 1
Cell 675 - threading - 2
Cell 675 - threading - 3
Cell 675 - threading - 4
Cell 675 - threading - 5
# Cell 676 - threading

import threading

def print_nums_676():
    for j in range(7):
        print("Cell 676 - threading -", j)

thread_676 = threading.Thread(target=print_nums_676)
thread_676.start()
thread_676.join()
Cell 676 - threading - 0
Cell 676 - threading - 1
Cell 676 - threading - 2
Cell 676 - threading - 3
Cell 676 - threading - 4
Cell 676 - threading - 5
Cell 676 - threading - 6
# Cell 677 - threading

import threading

def print_nums_677():
    for j in range(8):
        print("Cell 677 - threading -", j)

thread_677 = threading.Thread(target=print_nums_677)
thread_677.start()
thread_677.join()
Cell 677 - threading - 0
Cell 677 - threading - 1
Cell 677 - threading - 2
Cell 677 - threading - 3
Cell 677 - threading - 4
Cell 677 - threading - 5
Cell 677 - threading - 6
Cell 677 - threading - 7
# Cell 678 - threading

import threading

def print_nums_678():
    for j in range(9):
        print("Cell 678 - threading -", j)

thread_678 = threading.Thread(target=print_nums_678)
thread_678.start()
thread_678.join()
Cell 678 - threading - 0
Cell 678 - threading - 1
Cell 678 - threading - 2
Cell 678 - threading - 3
Cell 678 - threading - 4
Cell 678 - threading - 5
Cell 678 - threading - 6
Cell 678 - threading - 7
Cell 678 - threading - 8
# Cell 679 - threading

import threading

def print_nums_679():
    for j in range(10):
        print("Cell 679 - threading -", j)

thread_679 = threading.Thread(target=print_nums_679)
thread_679.start()
thread_679.join()
Cell 679 - threading - 0
Cell 679 - threading - 1
Cell 679 - threading - 2
Cell 679 - threading - 3
Cell 679 - threading - 4
Cell 679 - threading - 5
Cell 679 - threading - 6
Cell 679 - threading - 7
Cell 679 - threading - 8
Cell 679 - threading - 9
# Cell 680 - threading

import threading

def print_nums_680():
    for j in range(1):
        print("Cell 680 - threading -", j)

thread_680 = threading.Thread(target=print_nums_680)
thread_680.start()
thread_680.join()
Cell 680 - threading - 0
# Cell 681 - threading

import threading

def print_nums_681():
    for j in range(2):
        print("Cell 681 - threading -", j)

thread_681 = threading.Thread(target=print_nums_681)
thread_681.start()
thread_681.join()
Cell 681 - threading - 0
Cell 681 - threading - 1
# Cell 682 - threading

import threading

def print_nums_682():
    for j in range(3):
        print("Cell 682 - threading -", j)

thread_682 = threading.Thread(target=print_nums_682)
thread_682.start()
thread_682.join()
Cell 682 - threading - 0
Cell 682 - threading - 1
Cell 682 - threading - 2
# Cell 683 - threading

import threading

def print_nums_683():
    for j in range(4):
        print("Cell 683 - threading -", j)

thread_683 = threading.Thread(target=print_nums_683)
thread_683.start()
thread_683.join()
Cell 683 - threading - 0
Cell 683 - threading - 1
Cell 683 - threading - 2
Cell 683 - threading - 3
# Cell 684 - threading

import threading

def print_nums_684():
    for j in range(5):
        print("Cell 684 - threading -", j)

thread_684 = threading.Thread(target=print_nums_684)
thread_684.start()
thread_684.join()
Cell 684 - threading - 0
Cell 684 - threading - 1
Cell 684 - threading - 2
Cell 684 - threading - 3
Cell 684 - threading - 4
# Cell 685 - threading

import threading

def print_nums_685():
    for j in range(6):
        print("Cell 685 - threading -", j)

thread_685 = threading.Thread(target=print_nums_685)
thread_685.start()
thread_685.join()
Cell 685 - threading - 0
Cell 685 - threading - 1
Cell 685 - threading - 2
Cell 685 - threading - 3
Cell 685 - threading - 4
Cell 685 - threading - 5
# Cell 686 - threading

import threading

def print_nums_686():
    for j in range(7):
        print("Cell 686 - threading -", j)

thread_686 = threading.Thread(target=print_nums_686)
thread_686.start()
thread_686.join()
Cell 686 - threading - 0
Cell 686 - threading - 1
Cell 686 - threading - 2
Cell 686 - threading - 3
Cell 686 - threading - 4
Cell 686 - threading - 5
Cell 686 - threading - 6
# Cell 687 - threading

import threading

def print_nums_687():
    for j in range(8):
        print("Cell 687 - threading -", j)

thread_687 = threading.Thread(target=print_nums_687)
thread_687.start()
thread_687.join()
Cell 687 - threading - 0
Cell 687 - threading - 1
Cell 687 - threading - 2
Cell 687 - threading - 3
Cell 687 - threading - 4
Cell 687 - threading - 5
Cell 687 - threading - 6
Cell 687 - threading - 7
# Cell 688 - threading

import threading

def print_nums_688():
    for j in range(9):
        print("Cell 688 - threading -", j)

thread_688 = threading.Thread(target=print_nums_688)
thread_688.start()
thread_688.join()
Cell 688 - threading - 0
Cell 688 - threading - 1
Cell 688 - threading - 2
Cell 688 - threading - 3
Cell 688 - threading - 4
Cell 688 - threading - 5
Cell 688 - threading - 6
Cell 688 - threading - 7
Cell 688 - threading - 8
# Cell 689 - threading

import threading

def print_nums_689():
    for j in range(10):
        print("Cell 689 - threading -", j)

thread_689 = threading.Thread(target=print_nums_689)
thread_689.start()
thread_689.join()
Cell 689 - threading - 0
Cell 689 - threading - 1
Cell 689 - threading - 2
Cell 689 - threading - 3
Cell 689 - threading - 4
Cell 689 - threading - 5
Cell 689 - threading - 6
Cell 689 - threading - 7
Cell 689 - threading - 8
Cell 689 - threading - 9
# Cell 690 - threading

import threading

def print_nums_690():
    for j in range(1):
        print("Cell 690 - threading -", j)

thread_690 = threading.Thread(target=print_nums_690)
thread_690.start()
thread_690.join()
Cell 690 - threading - 0
# Cell 691 - threading

import threading

def print_nums_691():
    for j in range(2):
        print("Cell 691 - threading -", j)

thread_691 = threading.Thread(target=print_nums_691)
thread_691.start()
thread_691.join()
Cell 691 - threading - 0
Cell 691 - threading - 1
# Cell 692 - threading

import threading

def print_nums_692():
    for j in range(3):
        print("Cell 692 - threading -", j)

thread_692 = threading.Thread(target=print_nums_692)
thread_692.start()
thread_692.join()
Cell 692 - threading - 0
Cell 692 - threading - 1
Cell 692 - threading - 2
# Cell 693 - threading

import threading

def print_nums_693():
    for j in range(4):
        print("Cell 693 - threading -", j)

thread_693 = threading.Thread(target=print_nums_693)
thread_693.start()
thread_693.join()
Cell 693 - threading - 0
Cell 693 - threading - 1
Cell 693 - threading - 2
Cell 693 - threading - 3
# Cell 694 - threading

import threading

def print_nums_694():
    for j in range(5):
        print("Cell 694 - threading -", j)

thread_694 = threading.Thread(target=print_nums_694)
thread_694.start()
thread_694.join()
Cell 694 - threading - 0
Cell 694 - threading - 1
Cell 694 - threading - 2
Cell 694 - threading - 3
Cell 694 - threading - 4
# Cell 695 - threading

import threading

def print_nums_695():
    for j in range(6):
        print("Cell 695 - threading -", j)

thread_695 = threading.Thread(target=print_nums_695)
thread_695.start()
thread_695.join()
Cell 695 - threading - 0
Cell 695 - threading - 1
Cell 695 - threading - 2
Cell 695 - threading - 3
Cell 695 - threading - 4
Cell 695 - threading - 5
# Cell 696 - threading

import threading

def print_nums_696():
    for j in range(7):
        print("Cell 696 - threading -", j)

thread_696 = threading.Thread(target=print_nums_696)
thread_696.start()
thread_696.join()
Cell 696 - threading - 0
Cell 696 - threading - 1
Cell 696 - threading - 2
Cell 696 - threading - 3
Cell 696 - threading - 4
Cell 696 - threading - 5
Cell 696 - threading - 6
# Cell 697 - threading

import threading

def print_nums_697():
    for j in range(8):
        print("Cell 697 - threading -", j)

thread_697 = threading.Thread(target=print_nums_697)
thread_697.start()
thread_697.join()
Cell 697 - threading - 0
Cell 697 - threading - 1
Cell 697 - threading - 2
Cell 697 - threading - 3
Cell 697 - threading - 4
Cell 697 - threading - 5
Cell 697 - threading - 6
Cell 697 - threading - 7
# Cell 698 - threading

import threading

def print_nums_698():
    for j in range(9):
        print("Cell 698 - threading -", j)

thread_698 = threading.Thread(target=print_nums_698)
thread_698.start()
thread_698.join()
Cell 698 - threading - 0
Cell 698 - threading - 1
Cell 698 - threading - 2
Cell 698 - threading - 3
Cell 698 - threading - 4
Cell 698 - threading - 5
Cell 698 - threading - 6
Cell 698 - threading - 7
Cell 698 - threading - 8
# Cell 699 - threading

import threading

def print_nums_699():
    for j in range(10):
        print("Cell 699 - threading -", j)

thread_699 = threading.Thread(target=print_nums_699)
thread_699.start()
thread_699.join()
Cell 699 - threading - 0
Cell 699 - threading - 1
Cell 699 - threading - 2
Cell 699 - threading - 3
Cell 699 - threading - 4
Cell 699 - threading - 5
Cell 699 - threading - 6
Cell 699 - threading - 7
Cell 699 - threading - 8
Cell 699 - threading - 9
# Cell 700 - threading

import threading

def print_nums_700():
    for j in range(1):
        print("Cell 700 - threading -", j)

thread_700 = threading.Thread(target=print_nums_700)
thread_700.start()
thread_700.join()
Cell 700 - threading - 0
# Cell 701 - threading

import threading

def print_nums_701():
    for j in range(2):
        print("Cell 701 - threading -", j)

thread_701 = threading.Thread(target=print_nums_701)
thread_701.start()
thread_701.join()
Cell 701 - threading - 0
Cell 701 - threading - 1
# Cell 702 - threading

import threading

def print_nums_702():
    for j in range(3):
        print("Cell 702 - threading -", j)

thread_702 = threading.Thread(target=print_nums_702)
thread_702.start()
thread_702.join()
Cell 702 - threading - 0
Cell 702 - threading - 1
Cell 702 - threading - 2
# Cell 703 - threading

import threading

def print_nums_703():
    for j in range(4):
        print("Cell 703 - threading -", j)

thread_703 = threading.Thread(target=print_nums_703)
thread_703.start()
thread_703.join()
Cell 703 - threading - 0
Cell 703 - threading - 1
Cell 703 - threading - 2
Cell 703 - threading - 3
# Cell 704 - threading

import threading

def print_nums_704():
    for j in range(5):
        print("Cell 704 - threading -", j)

thread_704 = threading.Thread(target=print_nums_704)
thread_704.start()
thread_704.join()
Cell 704 - threading - 0
Cell 704 - threading - 1
Cell 704 - threading - 2
Cell 704 - threading - 3
Cell 704 - threading - 4
# Cell 705 - threading

import threading

def print_nums_705():
    for j in range(6):
        print("Cell 705 - threading -", j)

thread_705 = threading.Thread(target=print_nums_705)
thread_705.start()
thread_705.join()
Cell 705 - threading - 0
Cell 705 - threading - 1
Cell 705 - threading - 2
Cell 705 - threading - 3
Cell 705 - threading - 4
Cell 705 - threading - 5
# Cell 706 - threading

import threading

def print_nums_706():
    for j in range(7):
        print("Cell 706 - threading -", j)

thread_706 = threading.Thread(target=print_nums_706)
thread_706.start()
thread_706.join()
Cell 706 - threading - 0
Cell 706 - threading - 1
Cell 706 - threading - 2
Cell 706 - threading - 3
Cell 706 - threading - 4
Cell 706 - threading - 5
Cell 706 - threading - 6
# Cell 707 - threading

import threading

def print_nums_707():
    for j in range(8):
        print("Cell 707 - threading -", j)

thread_707 = threading.Thread(target=print_nums_707)
thread_707.start()
thread_707.join()
Cell 707 - threading - 0
Cell 707 - threading - 1
Cell 707 - threading - 2
Cell 707 - threading - 3
Cell 707 - threading - 4
Cell 707 - threading - 5
Cell 707 - threading - 6
Cell 707 - threading - 7
# Cell 708 - threading

import threading

def print_nums_708():
    for j in range(9):
        print("Cell 708 - threading -", j)

thread_708 = threading.Thread(target=print_nums_708)
thread_708.start()
thread_708.join()
Cell 708 - threading - 0
Cell 708 - threading - 1
Cell 708 - threading - 2
Cell 708 - threading - 3
Cell 708 - threading - 4
Cell 708 - threading - 5
Cell 708 - threading - 6
Cell 708 - threading - 7
Cell 708 - threading - 8
# Cell 709 - threading

import threading

def print_nums_709():
    for j in range(10):
        print("Cell 709 - threading -", j)

thread_709 = threading.Thread(target=print_nums_709)
thread_709.start()
thread_709.join()
Cell 709 - threading - 0
Cell 709 - threading - 1
Cell 709 - threading - 2
Cell 709 - threading - 3
Cell 709 - threading - 4
Cell 709 - threading - 5
Cell 709 - threading - 6
Cell 709 - threading - 7
Cell 709 - threading - 8
Cell 709 - threading - 9
# Cell 710 - threading

import threading

def print_nums_710():
    for j in range(1):
        print("Cell 710 - threading -", j)

thread_710 = threading.Thread(target=print_nums_710)
thread_710.start()
thread_710.join()
Cell 710 - threading - 0
# Cell 711 - threading

import threading

def print_nums_711():
    for j in range(2):
        print("Cell 711 - threading -", j)

thread_711 = threading.Thread(target=print_nums_711)
thread_711.start()
thread_711.join()
Cell 711 - threading - 0
Cell 711 - threading - 1
# Cell 712 - threading

import threading

def print_nums_712():
    for j in range(3):
        print("Cell 712 - threading -", j)

thread_712 = threading.Thread(target=print_nums_712)
thread_712.start()
thread_712.join()
Cell 712 - threading - 0
Cell 712 - threading - 1
Cell 712 - threading - 2
# Cell 713 - threading

import threading

def print_nums_713():
    for j in range(4):
        print("Cell 713 - threading -", j)

thread_713 = threading.Thread(target=print_nums_713)
thread_713.start()
thread_713.join()
Cell 713 - threading - 0
Cell 713 - threading - 1
Cell 713 - threading - 2
Cell 713 - threading - 3
# Cell 714 - threading

import threading

def print_nums_714():
    for j in range(5):
        print("Cell 714 - threading -", j)

thread_714 = threading.Thread(target=print_nums_714)
thread_714.start()
thread_714.join()
Cell 714 - threading - 0
Cell 714 - threading - 1
Cell 714 - threading - 2
Cell 714 - threading - 3
Cell 714 - threading - 4
# Cell 715 - threading

import threading

def print_nums_715():
    for j in range(6):
        print("Cell 715 - threading -", j)

thread_715 = threading.Thread(target=print_nums_715)
thread_715.start()
thread_715.join()
Cell 715 - threading - 0
Cell 715 - threading - 1
Cell 715 - threading - 2
Cell 715 - threading - 3
Cell 715 - threading - 4
Cell 715 - threading - 5
# Cell 716 - threading

import threading

def print_nums_716():
    for j in range(7):
        print("Cell 716 - threading -", j)

thread_716 = threading.Thread(target=print_nums_716)
thread_716.start()
thread_716.join()
Cell 716 - threading - 0
Cell 716 - threading - 1
Cell 716 - threading - 2
Cell 716 - threading - 3
Cell 716 - threading - 4
Cell 716 - threading - 5
Cell 716 - threading - 6
# Cell 717 - threading

import threading

def print_nums_717():
    for j in range(8):
        print("Cell 717 - threading -", j)

thread_717 = threading.Thread(target=print_nums_717)
thread_717.start()
thread_717.join()
Cell 717 - threading - 0
Cell 717 - threading - 1
Cell 717 - threading - 2
Cell 717 - threading - 3
Cell 717 - threading - 4
Cell 717 - threading - 5
Cell 717 - threading - 6
Cell 717 - threading - 7
# Cell 718 - threading

import threading

def print_nums_718():
    for j in range(9):
        print("Cell 718 - threading -", j)

thread_718 = threading.Thread(target=print_nums_718)
thread_718.start()
thread_718.join()
Cell 718 - threading - 0
Cell 718 - threading - 1
Cell 718 - threading - 2
Cell 718 - threading - 3
Cell 718 - threading - 4
Cell 718 - threading - 5
Cell 718 - threading - 6
Cell 718 - threading - 7
Cell 718 - threading - 8
# Cell 719 - threading

import threading

def print_nums_719():
    for j in range(10):
        print("Cell 719 - threading -", j)

thread_719 = threading.Thread(target=print_nums_719)
thread_719.start()
thread_719.join()
Cell 719 - threading - 0
Cell 719 - threading - 1
Cell 719 - threading - 2
Cell 719 - threading - 3
Cell 719 - threading - 4
Cell 719 - threading - 5
Cell 719 - threading - 6
Cell 719 - threading - 7
Cell 719 - threading - 8
Cell 719 - threading - 9
# Cell 720 - threading

import threading

def print_nums_720():
    for j in range(1):
        print("Cell 720 - threading -", j)

thread_720 = threading.Thread(target=print_nums_720)
thread_720.start()
thread_720.join()
Cell 720 - threading - 0
# Cell 721 - threading

import threading

def print_nums_721():
    for j in range(2):
        print("Cell 721 - threading -", j)

thread_721 = threading.Thread(target=print_nums_721)
thread_721.start()
thread_721.join()
Cell 721 - threading - 0
Cell 721 - threading - 1
# Cell 722 - threading

import threading

def print_nums_722():
    for j in range(3):
        print("Cell 722 - threading -", j)

thread_722 = threading.Thread(target=print_nums_722)
thread_722.start()
thread_722.join()
Cell 722 - threading - 0
Cell 722 - threading - 1
Cell 722 - threading - 2
# Cell 723 - threading

import threading

def print_nums_723():
    for j in range(4):
        print("Cell 723 - threading -", j)

thread_723 = threading.Thread(target=print_nums_723)
thread_723.start()
thread_723.join()
Cell 723 - threading - 0
Cell 723 - threading - 1
Cell 723 - threading - 2
Cell 723 - threading - 3
# Cell 724 - threading

import threading

def print_nums_724():
    for j in range(5):
        print("Cell 724 - threading -", j)

thread_724 = threading.Thread(target=print_nums_724)
thread_724.start()
thread_724.join()
Cell 724 - threading - 0
Cell 724 - threading - 1
Cell 724 - threading - 2
Cell 724 - threading - 3
Cell 724 - threading - 4
# Cell 725 - threading

import threading

def print_nums_725():
    for j in range(6):
        print("Cell 725 - threading -", j)

thread_725 = threading.Thread(target=print_nums_725)
thread_725.start()
thread_725.join()
Cell 725 - threading - 0
Cell 725 - threading - 1
Cell 725 - threading - 2
Cell 725 - threading - 3
Cell 725 - threading - 4
Cell 725 - threading - 5
# Cell 726 - threading

import threading

def print_nums_726():
    for j in range(7):
        print("Cell 726 - threading -", j)

thread_726 = threading.Thread(target=print_nums_726)
thread_726.start()
thread_726.join()
Cell 726 - threading - 0
Cell 726 - threading - 1
Cell 726 - threading - 2
Cell 726 - threading - 3
Cell 726 - threading - 4
Cell 726 - threading - 5
Cell 726 - threading - 6
# Cell 727 - threading

import threading

def print_nums_727():
    for j in range(8):
        print("Cell 727 - threading -", j)

thread_727 = threading.Thread(target=print_nums_727)
thread_727.start()
thread_727.join()
Cell 727 - threading - 0
Cell 727 - threading - 1
Cell 727 - threading - 2
Cell 727 - threading - 3
Cell 727 - threading - 4
Cell 727 - threading - 5
Cell 727 - threading - 6
Cell 727 - threading - 7
# Cell 728 - threading

import threading

def print_nums_728():
    for j in range(9):
        print("Cell 728 - threading -", j)

thread_728 = threading.Thread(target=print_nums_728)
thread_728.start()
thread_728.join()
Cell 728 - threading - 0
Cell 728 - threading - 1
Cell 728 - threading - 2
Cell 728 - threading - 3
Cell 728 - threading - 4
Cell 728 - threading - 5
Cell 728 - threading - 6
Cell 728 - threading - 7
Cell 728 - threading - 8
# Cell 729 - threading

import threading

def print_nums_729():
    for j in range(10):
        print("Cell 729 - threading -", j)

thread_729 = threading.Thread(target=print_nums_729)
thread_729.start()
thread_729.join()
Cell 729 - threading - 0
Cell 729 - threading - 1
Cell 729 - threading - 2
Cell 729 - threading - 3
Cell 729 - threading - 4
Cell 729 - threading - 5
Cell 729 - threading - 6
Cell 729 - threading - 7
Cell 729 - threading - 8
Cell 729 - threading - 9
# Cell 730 - threading

import threading

def print_nums_730():
    for j in range(1):
        print("Cell 730 - threading -", j)

thread_730 = threading.Thread(target=print_nums_730)
thread_730.start()
thread_730.join()
Cell 730 - threading - 0
# Cell 731 - threading

import threading

def print_nums_731():
    for j in range(2):
        print("Cell 731 - threading -", j)

thread_731 = threading.Thread(target=print_nums_731)
thread_731.start()
thread_731.join()
Cell 731 - threading - 0
Cell 731 - threading - 1
# Cell 732 - threading

import threading

def print_nums_732():
    for j in range(3):
        print("Cell 732 - threading -", j)

thread_732 = threading.Thread(target=print_nums_732)
thread_732.start()
thread_732.join()
Cell 732 - threading - 0
Cell 732 - threading - 1
Cell 732 - threading - 2
# Cell 733 - threading

import threading

def print_nums_733():
    for j in range(4):
        print("Cell 733 - threading -", j)

thread_733 = threading.Thread(target=print_nums_733)
thread_733.start()
thread_733.join()
Cell 733 - threading - 0
Cell 733 - threading - 1
Cell 733 - threading - 2
Cell 733 - threading - 3
# Cell 734 - threading

import threading

def print_nums_734():
    for j in range(5):
        print("Cell 734 - threading -", j)

thread_734 = threading.Thread(target=print_nums_734)
thread_734.start()
thread_734.join()
Cell 734 - threading - 0
Cell 734 - threading - 1
Cell 734 - threading - 2
Cell 734 - threading - 3
Cell 734 - threading - 4
# Cell 735 - threading

import threading

def print_nums_735():
    for j in range(6):
        print("Cell 735 - threading -", j)

thread_735 = threading.Thread(target=print_nums_735)
thread_735.start()
thread_735.join()
Cell 735 - threading - 0
Cell 735 - threading - 1
Cell 735 - threading - 2
Cell 735 - threading - 3
Cell 735 - threading - 4
Cell 735 - threading - 5
# Cell 736 - threading

import threading

def print_nums_736():
    for j in range(7):
        print("Cell 736 - threading -", j)

thread_736 = threading.Thread(target=print_nums_736)
thread_736.start()
thread_736.join()
Cell 736 - threading - 0
Cell 736 - threading - 1
Cell 736 - threading - 2
Cell 736 - threading - 3
Cell 736 - threading - 4
Cell 736 - threading - 5
Cell 736 - threading - 6
# Cell 737 - threading

import threading

def print_nums_737():
    for j in range(8):
        print("Cell 737 - threading -", j)

thread_737 = threading.Thread(target=print_nums_737)
thread_737.start()
thread_737.join()
Cell 737 - threading - 0
Cell 737 - threading - 1
Cell 737 - threading - 2
Cell 737 - threading - 3
Cell 737 - threading - 4
Cell 737 - threading - 5
Cell 737 - threading - 6
Cell 737 - threading - 7
# Cell 738 - threading

import threading

def print_nums_738():
    for j in range(9):
        print("Cell 738 - threading -", j)

thread_738 = threading.Thread(target=print_nums_738)
thread_738.start()
thread_738.join()
Cell 738 - threading - 0
Cell 738 - threading - 1
Cell 738 - threading - 2
Cell 738 - threading - 3
Cell 738 - threading - 4
Cell 738 - threading - 5
Cell 738 - threading - 6
Cell 738 - threading - 7
Cell 738 - threading - 8
# Cell 739 - threading

import threading

def print_nums_739():
    for j in range(10):
        print("Cell 739 - threading -", j)

thread_739 = threading.Thread(target=print_nums_739)
thread_739.start()
thread_739.join()
Cell 739 - threading - 0
Cell 739 - threading - 1
Cell 739 - threading - 2
Cell 739 - threading - 3
Cell 739 - threading - 4
Cell 739 - threading - 5
Cell 739 - threading - 6
Cell 739 - threading - 7
Cell 739 - threading - 8
Cell 739 - threading - 9
# Cell 740 - threading

import threading

def print_nums_740():
    for j in range(1):
        print("Cell 740 - threading -", j)

thread_740 = threading.Thread(target=print_nums_740)
thread_740.start()
thread_740.join()
Cell 740 - threading - 0
# Cell 741 - threading

import threading

def print_nums_741():
    for j in range(2):
        print("Cell 741 - threading -", j)

thread_741 = threading.Thread(target=print_nums_741)
thread_741.start()
thread_741.join()
Cell 741 - threading - 0
Cell 741 - threading - 1
# Cell 742 - threading

import threading

def print_nums_742():
    for j in range(3):
        print("Cell 742 - threading -", j)

thread_742 = threading.Thread(target=print_nums_742)
thread_742.start()
thread_742.join()
Cell 742 - threading - 0
Cell 742 - threading - 1
Cell 742 - threading - 2
# Cell 743 - threading

import threading

def print_nums_743():
    for j in range(4):
        print("Cell 743 - threading -", j)

thread_743 = threading.Thread(target=print_nums_743)
thread_743.start()
thread_743.join()
Cell 743 - threading - 0
Cell 743 - threading - 1
Cell 743 - threading - 2
Cell 743 - threading - 3
# Cell 744 - threading

import threading

def print_nums_744():
    for j in range(5):
        print("Cell 744 - threading -", j)

thread_744 = threading.Thread(target=print_nums_744)
thread_744.start()
thread_744.join()
Cell 744 - threading - 0
Cell 744 - threading - 1
Cell 744 - threading - 2
Cell 744 - threading - 3
Cell 744 - threading - 4
# Cell 745 - threading

import threading

def print_nums_745():
    for j in range(6):
        print("Cell 745 - threading -", j)

thread_745 = threading.Thread(target=print_nums_745)
thread_745.start()
thread_745.join()
Cell 745 - threading - 0
Cell 745 - threading - 1
Cell 745 - threading - 2
Cell 745 - threading - 3
Cell 745 - threading - 4
Cell 745 - threading - 5
# Cell 746 - threading

import threading

def print_nums_746():
    for j in range(7):
        print("Cell 746 - threading -", j)

thread_746 = threading.Thread(target=print_nums_746)
thread_746.start()
thread_746.join()
Cell 746 - threading - 0
Cell 746 - threading - 1
Cell 746 - threading - 2
Cell 746 - threading - 3
Cell 746 - threading - 4
Cell 746 - threading - 5
Cell 746 - threading - 6
# Cell 747 - threading

import threading

def print_nums_747():
    for j in range(8):
        print("Cell 747 - threading -", j)

thread_747 = threading.Thread(target=print_nums_747)
thread_747.start()
thread_747.join()
Cell 747 - threading - 0
Cell 747 - threading - 1
Cell 747 - threading - 2
Cell 747 - threading - 3
Cell 747 - threading - 4
Cell 747 - threading - 5
Cell 747 - threading - 6
Cell 747 - threading - 7
# Cell 748 - threading

import threading

def print_nums_748():
    for j in range(9):
        print("Cell 748 - threading -", j)

thread_748 = threading.Thread(target=print_nums_748)
thread_748.start()
thread_748.join()
Cell 748 - threading - 0
Cell 748 - threading - 1
Cell 748 - threading - 2
Cell 748 - threading - 3
Cell 748 - threading - 4
Cell 748 - threading - 5
Cell 748 - threading - 6
Cell 748 - threading - 7
Cell 748 - threading - 8
# Cell 749 - threading

import threading

def print_nums_749():
    for j in range(10):
        print("Cell 749 - threading -", j)

thread_749 = threading.Thread(target=print_nums_749)
thread_749.start()
thread_749.join()
Cell 749 - threading - 0
Cell 749 - threading - 1
Cell 749 - threading - 2
Cell 749 - threading - 3
Cell 749 - threading - 4
Cell 749 - threading - 5
Cell 749 - threading - 6
Cell 749 - threading - 7
Cell 749 - threading - 8
Cell 749 - threading - 9
# Cell 750 - threading

import threading

def print_nums_750():
    for j in range(1):
        print("Cell 750 - threading -", j)

thread_750 = threading.Thread(target=print_nums_750)
thread_750.start()
thread_750.join()
Cell 750 - threading - 0
# Cell 751 - threading

import threading

def print_nums_751():
    for j in range(2):
        print("Cell 751 - threading -", j)

thread_751 = threading.Thread(target=print_nums_751)
thread_751.start()
thread_751.join()
Cell 751 - threading - 0
Cell 751 - threading - 1
# Cell 752 - threading

import threading

def print_nums_752():
    for j in range(3):
        print("Cell 752 - threading -", j)

thread_752 = threading.Thread(target=print_nums_752)
thread_752.start()
thread_752.join()
Cell 752 - threading - 0
Cell 752 - threading - 1
Cell 752 - threading - 2
# Cell 753 - threading

import threading

def print_nums_753():
    for j in range(4):
        print("Cell 753 - threading -", j)

thread_753 = threading.Thread(target=print_nums_753)
thread_753.start()
thread_753.join()
Cell 753 - threading - 0
Cell 753 - threading - 1
Cell 753 - threading - 2
Cell 753 - threading - 3
# Cell 754 - threading

import threading

def print_nums_754():
    for j in range(5):
        print("Cell 754 - threading -", j)

thread_754 = threading.Thread(target=print_nums_754)
thread_754.start()
thread_754.join()
Cell 754 - threading - 0
Cell 754 - threading - 1
Cell 754 - threading - 2
Cell 754 - threading - 3
Cell 754 - threading - 4
# Cell 755 - threading

import threading

def print_nums_755():
    for j in range(6):
        print("Cell 755 - threading -", j)

thread_755 = threading.Thread(target=print_nums_755)
thread_755.start()
thread_755.join()
Cell 755 - threading - 0
Cell 755 - threading - 1
Cell 755 - threading - 2
Cell 755 - threading - 3
Cell 755 - threading - 4
Cell 755 - threading - 5
# Cell 756 - threading

import threading

def print_nums_756():
    for j in range(7):
        print("Cell 756 - threading -", j)

thread_756 = threading.Thread(target=print_nums_756)
thread_756.start()
thread_756.join()
Cell 756 - threading - 0
Cell 756 - threading - 1
Cell 756 - threading - 2
Cell 756 - threading - 3
Cell 756 - threading - 4
Cell 756 - threading - 5
Cell 756 - threading - 6
# Cell 757 - threading

import threading

def print_nums_757():
    for j in range(8):
        print("Cell 757 - threading -", j)

thread_757 = threading.Thread(target=print_nums_757)
thread_757.start()
thread_757.join()
Cell 757 - threading - 0
Cell 757 - threading - 1
Cell 757 - threading - 2
Cell 757 - threading - 3
Cell 757 - threading - 4
Cell 757 - threading - 5
Cell 757 - threading - 6
Cell 757 - threading - 7
# Cell 758 - threading

import threading

def print_nums_758():
    for j in range(9):
        print("Cell 758 - threading -", j)

thread_758 = threading.Thread(target=print_nums_758)
thread_758.start()
thread_758.join()
Cell 758 - threading - 0
Cell 758 - threading - 1
Cell 758 - threading - 2
Cell 758 - threading - 3
Cell 758 - threading - 4
Cell 758 - threading - 5
Cell 758 - threading - 6
Cell 758 - threading - 7
Cell 758 - threading - 8
# Cell 759 - threading

import threading

def print_nums_759():
    for j in range(10):
        print("Cell 759 - threading -", j)

thread_759 = threading.Thread(target=print_nums_759)
thread_759.start()
thread_759.join()
Cell 759 - threading - 0
Cell 759 - threading - 1
Cell 759 - threading - 2
Cell 759 - threading - 3
Cell 759 - threading - 4
Cell 759 - threading - 5
Cell 759 - threading - 6
Cell 759 - threading - 7
Cell 759 - threading - 8
Cell 759 - threading - 9
# Cell 760 - threading

import threading

def print_nums_760():
    for j in range(1):
        print("Cell 760 - threading -", j)

thread_760 = threading.Thread(target=print_nums_760)
thread_760.start()
thread_760.join()
Cell 760 - threading - 0
# Cell 761 - threading

import threading

def print_nums_761():
    for j in range(2):
        print("Cell 761 - threading -", j)

thread_761 = threading.Thread(target=print_nums_761)
thread_761.start()
thread_761.join()
Cell 761 - threading - 0
Cell 761 - threading - 1
# Cell 762 - threading

import threading

def print_nums_762():
    for j in range(3):
        print("Cell 762 - threading -", j)

thread_762 = threading.Thread(target=print_nums_762)
thread_762.start()
thread_762.join()
Cell 762 - threading - 0
Cell 762 - threading - 1
Cell 762 - threading - 2
# Cell 763 - threading

import threading

def print_nums_763():
    for j in range(4):
        print("Cell 763 - threading -", j)

thread_763 = threading.Thread(target=print_nums_763)
thread_763.start()
thread_763.join()
Cell 763 - threading - 0
Cell 763 - threading - 1
Cell 763 - threading - 2
Cell 763 - threading - 3
# Cell 764 - threading

import threading

def print_nums_764():
    for j in range(5):
        print("Cell 764 - threading -", j)

thread_764 = threading.Thread(target=print_nums_764)
thread_764.start()
thread_764.join()
Cell 764 - threading - 0
Cell 764 - threading - 1
Cell 764 - threading - 2
Cell 764 - threading - 3
Cell 764 - threading - 4
# Cell 765 - threading

import threading

def print_nums_765():
    for j in range(6):
        print("Cell 765 - threading -", j)

thread_765 = threading.Thread(target=print_nums_765)
thread_765.start()
thread_765.join()
Cell 765 - threading - 0
Cell 765 - threading - 1
Cell 765 - threading - 2
Cell 765 - threading - 3
Cell 765 - threading - 4
Cell 765 - threading - 5
# Cell 766 - threading

import threading

def print_nums_766():
    for j in range(7):
        print("Cell 766 - threading -", j)

thread_766 = threading.Thread(target=print_nums_766)
thread_766.start()
thread_766.join()
Cell 766 - threading - 0
Cell 766 - threading - 1
Cell 766 - threading - 2
Cell 766 - threading - 3
Cell 766 - threading - 4
Cell 766 - threading - 5
Cell 766 - threading - 6
# Cell 767 - threading

import threading

def print_nums_767():
    for j in range(8):
        print("Cell 767 - threading -", j)

thread_767 = threading.Thread(target=print_nums_767)
thread_767.start()
thread_767.join()
Cell 767 - threading - 0
Cell 767 - threading - 1
Cell 767 - threading - 2
Cell 767 - threading - 3
Cell 767 - threading - 4
Cell 767 - threading - 5
Cell 767 - threading - 6
Cell 767 - threading - 7
# Cell 768 - threading

import threading

def print_nums_768():
    for j in range(9):
        print("Cell 768 - threading -", j)

thread_768 = threading.Thread(target=print_nums_768)
thread_768.start()
thread_768.join()
Cell 768 - threading - 0
Cell 768 - threading - 1
Cell 768 - threading - 2
Cell 768 - threading - 3
Cell 768 - threading - 4
Cell 768 - threading - 5
Cell 768 - threading - 6
Cell 768 - threading - 7
Cell 768 - threading - 8
# Cell 769 - threading

import threading

def print_nums_769():
    for j in range(10):
        print("Cell 769 - threading -", j)

thread_769 = threading.Thread(target=print_nums_769)
thread_769.start()
thread_769.join()
Cell 769 - threading - 0
Cell 769 - threading - 1
Cell 769 - threading - 2
Cell 769 - threading - 3
Cell 769 - threading - 4
Cell 769 - threading - 5
Cell 769 - threading - 6
Cell 769 - threading - 7
Cell 769 - threading - 8
Cell 769 - threading - 9
# Cell 770 - threading

import threading

def print_nums_770():
    for j in range(1):
        print("Cell 770 - threading -", j)

thread_770 = threading.Thread(target=print_nums_770)
thread_770.start()
thread_770.join()
Cell 770 - threading - 0
# Cell 771 - threading

import threading

def print_nums_771():
    for j in range(2):
        print("Cell 771 - threading -", j)

thread_771 = threading.Thread(target=print_nums_771)
thread_771.start()
thread_771.join()
Cell 771 - threading - 0
Cell 771 - threading - 1
# Cell 772 - threading

import threading

def print_nums_772():
    for j in range(3):
        print("Cell 772 - threading -", j)

thread_772 = threading.Thread(target=print_nums_772)
thread_772.start()
thread_772.join()
Cell 772 - threading - 0
Cell 772 - threading - 1
Cell 772 - threading - 2
# Cell 773 - threading

import threading

def print_nums_773():
    for j in range(4):
        print("Cell 773 - threading -", j)

thread_773 = threading.Thread(target=print_nums_773)
thread_773.start()
thread_773.join()
Cell 773 - threading - 0
Cell 773 - threading - 1
Cell 773 - threading - 2
Cell 773 - threading - 3
# Cell 774 - threading

import threading

def print_nums_774():
    for j in range(5):
        print("Cell 774 - threading -", j)

thread_774 = threading.Thread(target=print_nums_774)
thread_774.start()
thread_774.join()
Cell 774 - threading - 0
Cell 774 - threading - 1
Cell 774 - threading - 2
Cell 774 - threading - 3
Cell 774 - threading - 4
# Cell 775 - threading

import threading

def print_nums_775():
    for j in range(6):
        print("Cell 775 - threading -", j)

thread_775 = threading.Thread(target=print_nums_775)
thread_775.start()
thread_775.join()
Cell 775 - threading - 0
Cell 775 - threading - 1
Cell 775 - threading - 2
Cell 775 - threading - 3
Cell 775 - threading - 4
Cell 775 - threading - 5
# Cell 776 - threading

import threading

def print_nums_776():
    for j in range(7):
        print("Cell 776 - threading -", j)

thread_776 = threading.Thread(target=print_nums_776)
thread_776.start()
thread_776.join()
Cell 776 - threading - 0
Cell 776 - threading - 1
Cell 776 - threading - 2
Cell 776 - threading - 3
Cell 776 - threading - 4
Cell 776 - threading - 5
Cell 776 - threading - 6
# Cell 777 - threading

import threading

def print_nums_777():
    for j in range(8):
        print("Cell 777 - threading -", j)

thread_777 = threading.Thread(target=print_nums_777)
thread_777.start()
thread_777.join()
Cell 777 - threading - 0
Cell 777 - threading - 1
Cell 777 - threading - 2
Cell 777 - threading - 3
Cell 777 - threading - 4
Cell 777 - threading - 5
Cell 777 - threading - 6
Cell 777 - threading - 7
# Cell 778 - threading

import threading

def print_nums_778():
    for j in range(9):
        print("Cell 778 - threading -", j)

thread_778 = threading.Thread(target=print_nums_778)
thread_778.start()
thread_778.join()
Cell 778 - threading - 0
Cell 778 - threading - 1
Cell 778 - threading - 2
Cell 778 - threading - 3
Cell 778 - threading - 4
Cell 778 - threading - 5
Cell 778 - threading - 6
Cell 778 - threading - 7
Cell 778 - threading - 8
# Cell 779 - threading

import threading

def print_nums_779():
    for j in range(10):
        print("Cell 779 - threading -", j)

thread_779 = threading.Thread(target=print_nums_779)
thread_779.start()
thread_779.join()
Cell 779 - threading - 0
Cell 779 - threading - 1
Cell 779 - threading - 2
Cell 779 - threading - 3
Cell 779 - threading - 4
Cell 779 - threading - 5
Cell 779 - threading - 6
Cell 779 - threading - 7
Cell 779 - threading - 8
Cell 779 - threading - 9
# Cell 780 - threading

import threading

def print_nums_780():
    for j in range(1):
        print("Cell 780 - threading -", j)

thread_780 = threading.Thread(target=print_nums_780)
thread_780.start()
thread_780.join()
Cell 780 - threading - 0
# Cell 781 - threading

import threading

def print_nums_781():
    for j in range(2):
        print("Cell 781 - threading -", j)

thread_781 = threading.Thread(target=print_nums_781)
thread_781.start()
thread_781.join()
Cell 781 - threading - 0
Cell 781 - threading - 1
# Cell 782 - threading

import threading

def print_nums_782():
    for j in range(3):
        print("Cell 782 - threading -", j)

thread_782 = threading.Thread(target=print_nums_782)
thread_782.start()
thread_782.join()
Cell 782 - threading - 0
Cell 782 - threading - 1
Cell 782 - threading - 2
# Cell 783 - threading

import threading

def print_nums_783():
    for j in range(4):
        print("Cell 783 - threading -", j)

thread_783 = threading.Thread(target=print_nums_783)
thread_783.start()
thread_783.join()
Cell 783 - threading - 0
Cell 783 - threading - 1
Cell 783 - threading - 2
Cell 783 - threading - 3
# Cell 784 - threading

import threading

def print_nums_784():
    for j in range(5):
        print("Cell 784 - threading -", j)

thread_784 = threading.Thread(target=print_nums_784)
thread_784.start()
thread_784.join()
Cell 784 - threading - 0
Cell 784 - threading - 1
Cell 784 - threading - 2
Cell 784 - threading - 3
Cell 784 - threading - 4
# Cell 785 - threading

import threading

def print_nums_785():
    for j in range(6):
        print("Cell 785 - threading -", j)

thread_785 = threading.Thread(target=print_nums_785)
thread_785.start()
thread_785.join()
Cell 785 - threading - 0
Cell 785 - threading - 1
Cell 785 - threading - 2
Cell 785 - threading - 3
Cell 785 - threading - 4
Cell 785 - threading - 5
# Cell 786 - threading

import threading

def print_nums_786():
    for j in range(7):
        print("Cell 786 - threading -", j)

thread_786 = threading.Thread(target=print_nums_786)
thread_786.start()
thread_786.join()
Cell 786 - threading - 0
Cell 786 - threading - 1
Cell 786 - threading - 2
Cell 786 - threading - 3
Cell 786 - threading - 4
Cell 786 - threading - 5
Cell 786 - threading - 6
# Cell 787 - threading

import threading

def print_nums_787():
    for j in range(8):
        print("Cell 787 - threading -", j)

thread_787 = threading.Thread(target=print_nums_787)
thread_787.start()
thread_787.join()
Cell 787 - threading - 0
Cell 787 - threading - 1
Cell 787 - threading - 2
Cell 787 - threading - 3
Cell 787 - threading - 4
Cell 787 - threading - 5
Cell 787 - threading - 6
Cell 787 - threading - 7
# Cell 788 - threading

import threading

def print_nums_788():
    for j in range(9):
        print("Cell 788 - threading -", j)

thread_788 = threading.Thread(target=print_nums_788)
thread_788.start()
thread_788.join()
Cell 788 - threading - 0
Cell 788 - threading - 1
Cell 788 - threading - 2
Cell 788 - threading - 3
Cell 788 - threading - 4
Cell 788 - threading - 5
Cell 788 - threading - 6
Cell 788 - threading - 7
Cell 788 - threading - 8
# Cell 789 - threading

import threading

def print_nums_789():
    for j in range(10):
        print("Cell 789 - threading -", j)

thread_789 = threading.Thread(target=print_nums_789)
thread_789.start()
thread_789.join()
Cell 789 - threading - 0
Cell 789 - threading - 1
Cell 789 - threading - 2
Cell 789 - threading - 3
Cell 789 - threading - 4
Cell 789 - threading - 5
Cell 789 - threading - 6
Cell 789 - threading - 7
Cell 789 - threading - 8
Cell 789 - threading - 9
# Cell 790 - threading

import threading

def print_nums_790():
    for j in range(1):
        print("Cell 790 - threading -", j)

thread_790 = threading.Thread(target=print_nums_790)
thread_790.start()
thread_790.join()
Cell 790 - threading - 0
# Cell 791 - threading

import threading

def print_nums_791():
    for j in range(2):
        print("Cell 791 - threading -", j)

thread_791 = threading.Thread(target=print_nums_791)
thread_791.start()
thread_791.join()
Cell 791 - threading - 0
Cell 791 - threading - 1
# Cell 792 - threading

import threading

def print_nums_792():
    for j in range(3):
        print("Cell 792 - threading -", j)

thread_792 = threading.Thread(target=print_nums_792)
thread_792.start()
thread_792.join()
Cell 792 - threading - 0
Cell 792 - threading - 1
Cell 792 - threading - 2
# Cell 793 - threading

import threading

def print_nums_793():
    for j in range(4):
        print("Cell 793 - threading -", j)

thread_793 = threading.Thread(target=print_nums_793)
thread_793.start()
thread_793.join()
Cell 793 - threading - 0
Cell 793 - threading - 1
Cell 793 - threading - 2
Cell 793 - threading - 3
# Cell 794 - threading

import threading

def print_nums_794():
    for j in range(5):
        print("Cell 794 - threading -", j)

thread_794 = threading.Thread(target=print_nums_794)
thread_794.start()
thread_794.join()
Cell 794 - threading - 0
Cell 794 - threading - 1
Cell 794 - threading - 2
Cell 794 - threading - 3
Cell 794 - threading - 4
# Cell 795 - threading

import threading

def print_nums_795():
    for j in range(6):
        print("Cell 795 - threading -", j)

thread_795 = threading.Thread(target=print_nums_795)
thread_795.start()
thread_795.join()
Cell 795 - threading - 0
Cell 795 - threading - 1
Cell 795 - threading - 2
Cell 795 - threading - 3
Cell 795 - threading - 4
Cell 795 - threading - 5
# Cell 796 - threading

import threading

def print_nums_796():
    for j in range(7):
        print("Cell 796 - threading -", j)

thread_796 = threading.Thread(target=print_nums_796)
thread_796.start()
thread_796.join()
Cell 796 - threading - 0
Cell 796 - threading - 1
Cell 796 - threading - 2
Cell 796 - threading - 3
Cell 796 - threading - 4
Cell 796 - threading - 5
Cell 796 - threading - 6
# Cell 797 - threading

import threading

def print_nums_797():
    for j in range(8):
        print("Cell 797 - threading -", j)

thread_797 = threading.Thread(target=print_nums_797)
thread_797.start()
thread_797.join()
Cell 797 - threading - 0
Cell 797 - threading - 1
Cell 797 - threading - 2
Cell 797 - threading - 3
Cell 797 - threading - 4
Cell 797 - threading - 5
Cell 797 - threading - 6
Cell 797 - threading - 7
# Cell 798 - threading

import threading

def print_nums_798():
    for j in range(9):
        print("Cell 798 - threading -", j)

thread_798 = threading.Thread(target=print_nums_798)
thread_798.start()
thread_798.join()
Cell 798 - threading - 0
Cell 798 - threading - 1
Cell 798 - threading - 2
Cell 798 - threading - 3
Cell 798 - threading - 4
Cell 798 - threading - 5
Cell 798 - threading - 6
Cell 798 - threading - 7
Cell 798 - threading - 8
# Cell 799 - threading

import threading

def print_nums_799():
    for j in range(10):
        print("Cell 799 - threading -", j)

thread_799 = threading.Thread(target=print_nums_799)
thread_799.start()
thread_799.join()
Cell 799 - threading - 0
Cell 799 - threading - 1
Cell 799 - threading - 2
Cell 799 - threading - 3
Cell 799 - threading - 4
Cell 799 - threading - 5
Cell 799 - threading - 6
Cell 799 - threading - 7
Cell 799 - threading - 8
Cell 799 - threading - 9
# Cell 800 - threading

import threading

def print_nums_800():
    for j in range(1):
        print("Cell 800 - threading -", j)

thread_800 = threading.Thread(target=print_nums_800)
thread_800.start()
thread_800.join()
Cell 800 - threading - 0
# Cell 801 - generators

def gen_801(n):
    for k in range(n):
        yield k ** 2

g_801 = gen_801(22)
print("Cell 801 - generators")
print(list(g_801))
Cell 801 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 802 - generators

def gen_802(n):
    for k in range(n):
        yield k ** 2

g_802 = gen_802(23)
print("Cell 802 - generators")
print(list(g_802))
Cell 802 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 803 - generators

def gen_803(n):
    for k in range(n):
        yield k ** 2

g_803 = gen_803(24)
print("Cell 803 - generators")
print(list(g_803))
Cell 803 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 804 - generators

def gen_804(n):
    for k in range(n):
        yield k ** 2

g_804 = gen_804(25)
print("Cell 804 - generators")
print(list(g_804))
Cell 804 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 805 - generators

def gen_805(n):
    for k in range(n):
        yield k ** 2

g_805 = gen_805(26)
print("Cell 805 - generators")
print(list(g_805))
Cell 805 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 806 - generators

def gen_806(n):
    for k in range(n):
        yield k ** 2

g_806 = gen_806(27)
print("Cell 806 - generators")
print(list(g_806))
Cell 806 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 807 - generators

def gen_807(n):
    for k in range(n):
        yield k ** 2

g_807 = gen_807(28)
print("Cell 807 - generators")
print(list(g_807))
Cell 807 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 808 - generators

def gen_808(n):
    for k in range(n):
        yield k ** 2

g_808 = gen_808(29)
print("Cell 808 - generators")
print(list(g_808))
Cell 808 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 809 - generators

def gen_809(n):
    for k in range(n):
        yield k ** 2

g_809 = gen_809(30)
print("Cell 809 - generators")
print(list(g_809))
Cell 809 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 810 - generators

def gen_810(n):
    for k in range(n):
        yield k ** 2

g_810 = gen_810(1)
print("Cell 810 - generators")
print(list(g_810))
Cell 810 - generators
[0]
# Cell 811 - generators

def gen_811(n):
    for k in range(n):
        yield k ** 2

g_811 = gen_811(2)
print("Cell 811 - generators")
print(list(g_811))
Cell 811 - generators
[0, 1]
# Cell 812 - generators

def gen_812(n):
    for k in range(n):
        yield k ** 2

g_812 = gen_812(3)
print("Cell 812 - generators")
print(list(g_812))
Cell 812 - generators
[0, 1, 4]
# Cell 813 - generators

def gen_813(n):
    for k in range(n):
        yield k ** 2

g_813 = gen_813(4)
print("Cell 813 - generators")
print(list(g_813))
Cell 813 - generators
[0, 1, 4, 9]
# Cell 814 - generators

def gen_814(n):
    for k in range(n):
        yield k ** 2

g_814 = gen_814(5)
print("Cell 814 - generators")
print(list(g_814))
Cell 814 - generators
[0, 1, 4, 9, 16]
# Cell 815 - generators

def gen_815(n):
    for k in range(n):
        yield k ** 2

g_815 = gen_815(6)
print("Cell 815 - generators")
print(list(g_815))
Cell 815 - generators
[0, 1, 4, 9, 16, 25]
# Cell 816 - generators

def gen_816(n):
    for k in range(n):
        yield k ** 2

g_816 = gen_816(7)
print("Cell 816 - generators")
print(list(g_816))
Cell 816 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 817 - generators

def gen_817(n):
    for k in range(n):
        yield k ** 2

g_817 = gen_817(8)
print("Cell 817 - generators")
print(list(g_817))
Cell 817 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 818 - generators

def gen_818(n):
    for k in range(n):
        yield k ** 2

g_818 = gen_818(9)
print("Cell 818 - generators")
print(list(g_818))
Cell 818 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 819 - generators

def gen_819(n):
    for k in range(n):
        yield k ** 2

g_819 = gen_819(10)
print("Cell 819 - generators")
print(list(g_819))
Cell 819 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 820 - generators

def gen_820(n):
    for k in range(n):
        yield k ** 2

g_820 = gen_820(11)
print("Cell 820 - generators")
print(list(g_820))
Cell 820 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 821 - generators

def gen_821(n):
    for k in range(n):
        yield k ** 2

g_821 = gen_821(12)
print("Cell 821 - generators")
print(list(g_821))
Cell 821 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 822 - generators

def gen_822(n):
    for k in range(n):
        yield k ** 2

g_822 = gen_822(13)
print("Cell 822 - generators")
print(list(g_822))
Cell 822 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 823 - generators

def gen_823(n):
    for k in range(n):
        yield k ** 2

g_823 = gen_823(14)
print("Cell 823 - generators")
print(list(g_823))
Cell 823 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 824 - generators

def gen_824(n):
    for k in range(n):
        yield k ** 2

g_824 = gen_824(15)
print("Cell 824 - generators")
print(list(g_824))
Cell 824 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 825 - generators

def gen_825(n):
    for k in range(n):
        yield k ** 2

g_825 = gen_825(16)
print("Cell 825 - generators")
print(list(g_825))
Cell 825 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 826 - generators

def gen_826(n):
    for k in range(n):
        yield k ** 2

g_826 = gen_826(17)
print("Cell 826 - generators")
print(list(g_826))
Cell 826 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 827 - generators

def gen_827(n):
    for k in range(n):
        yield k ** 2

g_827 = gen_827(18)
print("Cell 827 - generators")
print(list(g_827))
Cell 827 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 828 - generators

def gen_828(n):
    for k in range(n):
        yield k ** 2

g_828 = gen_828(19)
print("Cell 828 - generators")
print(list(g_828))
Cell 828 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 829 - generators

def gen_829(n):
    for k in range(n):
        yield k ** 2

g_829 = gen_829(20)
print("Cell 829 - generators")
print(list(g_829))
Cell 829 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 830 - generators

def gen_830(n):
    for k in range(n):
        yield k ** 2

g_830 = gen_830(21)
print("Cell 830 - generators")
print(list(g_830))
Cell 830 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 831 - generators

def gen_831(n):
    for k in range(n):
        yield k ** 2

g_831 = gen_831(22)
print("Cell 831 - generators")
print(list(g_831))
Cell 831 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 832 - generators

def gen_832(n):
    for k in range(n):
        yield k ** 2

g_832 = gen_832(23)
print("Cell 832 - generators")
print(list(g_832))
Cell 832 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 833 - generators

def gen_833(n):
    for k in range(n):
        yield k ** 2

g_833 = gen_833(24)
print("Cell 833 - generators")
print(list(g_833))
Cell 833 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 834 - generators

def gen_834(n):
    for k in range(n):
        yield k ** 2

g_834 = gen_834(25)
print("Cell 834 - generators")
print(list(g_834))
Cell 834 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 835 - generators

def gen_835(n):
    for k in range(n):
        yield k ** 2

g_835 = gen_835(26)
print("Cell 835 - generators")
print(list(g_835))
Cell 835 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 836 - generators

def gen_836(n):
    for k in range(n):
        yield k ** 2

g_836 = gen_836(27)
print("Cell 836 - generators")
print(list(g_836))
Cell 836 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 837 - generators

def gen_837(n):
    for k in range(n):
        yield k ** 2

g_837 = gen_837(28)
print("Cell 837 - generators")
print(list(g_837))
Cell 837 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 838 - generators

def gen_838(n):
    for k in range(n):
        yield k ** 2

g_838 = gen_838(29)
print("Cell 838 - generators")
print(list(g_838))
Cell 838 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 839 - generators

def gen_839(n):
    for k in range(n):
        yield k ** 2

g_839 = gen_839(30)
print("Cell 839 - generators")
print(list(g_839))
Cell 839 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 840 - generators

def gen_840(n):
    for k in range(n):
        yield k ** 2

g_840 = gen_840(1)
print("Cell 840 - generators")
print(list(g_840))
Cell 840 - generators
[0]
# Cell 841 - generators

def gen_841(n):
    for k in range(n):
        yield k ** 2

g_841 = gen_841(2)
print("Cell 841 - generators")
print(list(g_841))
Cell 841 - generators
[0, 1]
# Cell 842 - generators

def gen_842(n):
    for k in range(n):
        yield k ** 2

g_842 = gen_842(3)
print("Cell 842 - generators")
print(list(g_842))
Cell 842 - generators
[0, 1, 4]
# Cell 843 - generators

def gen_843(n):
    for k in range(n):
        yield k ** 2

g_843 = gen_843(4)
print("Cell 843 - generators")
print(list(g_843))
Cell 843 - generators
[0, 1, 4, 9]
# Cell 844 - generators

def gen_844(n):
    for k in range(n):
        yield k ** 2

g_844 = gen_844(5)
print("Cell 844 - generators")
print(list(g_844))
Cell 844 - generators
[0, 1, 4, 9, 16]
# Cell 845 - generators

def gen_845(n):
    for k in range(n):
        yield k ** 2

g_845 = gen_845(6)
print("Cell 845 - generators")
print(list(g_845))
Cell 845 - generators
[0, 1, 4, 9, 16, 25]
# Cell 846 - generators

def gen_846(n):
    for k in range(n):
        yield k ** 2

g_846 = gen_846(7)
print("Cell 846 - generators")
print(list(g_846))
Cell 846 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 847 - generators

def gen_847(n):
    for k in range(n):
        yield k ** 2

g_847 = gen_847(8)
print("Cell 847 - generators")
print(list(g_847))
Cell 847 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 848 - generators

def gen_848(n):
    for k in range(n):
        yield k ** 2

g_848 = gen_848(9)
print("Cell 848 - generators")
print(list(g_848))
Cell 848 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 849 - generators

def gen_849(n):
    for k in range(n):
        yield k ** 2

g_849 = gen_849(10)
print("Cell 849 - generators")
print(list(g_849))
Cell 849 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 850 - generators

def gen_850(n):
    for k in range(n):
        yield k ** 2

g_850 = gen_850(11)
print("Cell 850 - generators")
print(list(g_850))
Cell 850 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 851 - generators

def gen_851(n):
    for k in range(n):
        yield k ** 2

g_851 = gen_851(12)
print("Cell 851 - generators")
print(list(g_851))
Cell 851 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 852 - generators

def gen_852(n):
    for k in range(n):
        yield k ** 2

g_852 = gen_852(13)
print("Cell 852 - generators")
print(list(g_852))
Cell 852 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 853 - generators

def gen_853(n):
    for k in range(n):
        yield k ** 2

g_853 = gen_853(14)
print("Cell 853 - generators")
print(list(g_853))
Cell 853 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 854 - generators

def gen_854(n):
    for k in range(n):
        yield k ** 2

g_854 = gen_854(15)
print("Cell 854 - generators")
print(list(g_854))
Cell 854 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 855 - generators

def gen_855(n):
    for k in range(n):
        yield k ** 2

g_855 = gen_855(16)
print("Cell 855 - generators")
print(list(g_855))
Cell 855 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 856 - generators

def gen_856(n):
    for k in range(n):
        yield k ** 2

g_856 = gen_856(17)
print("Cell 856 - generators")
print(list(g_856))
Cell 856 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 857 - generators

def gen_857(n):
    for k in range(n):
        yield k ** 2

g_857 = gen_857(18)
print("Cell 857 - generators")
print(list(g_857))
Cell 857 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 858 - generators

def gen_858(n):
    for k in range(n):
        yield k ** 2

g_858 = gen_858(19)
print("Cell 858 - generators")
print(list(g_858))
Cell 858 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 859 - generators

def gen_859(n):
    for k in range(n):
        yield k ** 2

g_859 = gen_859(20)
print("Cell 859 - generators")
print(list(g_859))
Cell 859 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 860 - generators

def gen_860(n):
    for k in range(n):
        yield k ** 2

g_860 = gen_860(21)
print("Cell 860 - generators")
print(list(g_860))
Cell 860 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 861 - generators

def gen_861(n):
    for k in range(n):
        yield k ** 2

g_861 = gen_861(22)
print("Cell 861 - generators")
print(list(g_861))
Cell 861 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 862 - generators

def gen_862(n):
    for k in range(n):
        yield k ** 2

g_862 = gen_862(23)
print("Cell 862 - generators")
print(list(g_862))
Cell 862 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 863 - generators

def gen_863(n):
    for k in range(n):
        yield k ** 2

g_863 = gen_863(24)
print("Cell 863 - generators")
print(list(g_863))
Cell 863 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 864 - generators

def gen_864(n):
    for k in range(n):
        yield k ** 2

g_864 = gen_864(25)
print("Cell 864 - generators")
print(list(g_864))
Cell 864 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 865 - generators

def gen_865(n):
    for k in range(n):
        yield k ** 2

g_865 = gen_865(26)
print("Cell 865 - generators")
print(list(g_865))
Cell 865 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 866 - generators

def gen_866(n):
    for k in range(n):
        yield k ** 2

g_866 = gen_866(27)
print("Cell 866 - generators")
print(list(g_866))
Cell 866 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 867 - generators

def gen_867(n):
    for k in range(n):
        yield k ** 2

g_867 = gen_867(28)
print("Cell 867 - generators")
print(list(g_867))
Cell 867 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 868 - generators

def gen_868(n):
    for k in range(n):
        yield k ** 2

g_868 = gen_868(29)
print("Cell 868 - generators")
print(list(g_868))
Cell 868 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 869 - generators

def gen_869(n):
    for k in range(n):
        yield k ** 2

g_869 = gen_869(30)
print("Cell 869 - generators")
print(list(g_869))
Cell 869 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 870 - generators

def gen_870(n):
    for k in range(n):
        yield k ** 2

g_870 = gen_870(1)
print("Cell 870 - generators")
print(list(g_870))
Cell 870 - generators
[0]
# Cell 871 - generators

def gen_871(n):
    for k in range(n):
        yield k ** 2

g_871 = gen_871(2)
print("Cell 871 - generators")
print(list(g_871))
Cell 871 - generators
[0, 1]
# Cell 872 - generators

def gen_872(n):
    for k in range(n):
        yield k ** 2

g_872 = gen_872(3)
print("Cell 872 - generators")
print(list(g_872))
Cell 872 - generators
[0, 1, 4]
# Cell 873 - generators

def gen_873(n):
    for k in range(n):
        yield k ** 2

g_873 = gen_873(4)
print("Cell 873 - generators")
print(list(g_873))
Cell 873 - generators
[0, 1, 4, 9]
# Cell 874 - generators

def gen_874(n):
    for k in range(n):
        yield k ** 2

g_874 = gen_874(5)
print("Cell 874 - generators")
print(list(g_874))
Cell 874 - generators
[0, 1, 4, 9, 16]
# Cell 875 - generators

def gen_875(n):
    for k in range(n):
        yield k ** 2

g_875 = gen_875(6)
print("Cell 875 - generators")
print(list(g_875))
Cell 875 - generators
[0, 1, 4, 9, 16, 25]
# Cell 876 - generators

def gen_876(n):
    for k in range(n):
        yield k ** 2

g_876 = gen_876(7)
print("Cell 876 - generators")
print(list(g_876))
Cell 876 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 877 - generators

def gen_877(n):
    for k in range(n):
        yield k ** 2

g_877 = gen_877(8)
print("Cell 877 - generators")
print(list(g_877))
Cell 877 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 878 - generators

def gen_878(n):
    for k in range(n):
        yield k ** 2

g_878 = gen_878(9)
print("Cell 878 - generators")
print(list(g_878))
Cell 878 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 879 - generators

def gen_879(n):
    for k in range(n):
        yield k ** 2

g_879 = gen_879(10)
print("Cell 879 - generators")
print(list(g_879))
Cell 879 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 880 - generators

def gen_880(n):
    for k in range(n):
        yield k ** 2

g_880 = gen_880(11)
print("Cell 880 - generators")
print(list(g_880))
Cell 880 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 881 - generators

def gen_881(n):
    for k in range(n):
        yield k ** 2

g_881 = gen_881(12)
print("Cell 881 - generators")
print(list(g_881))
Cell 881 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 882 - generators

def gen_882(n):
    for k in range(n):
        yield k ** 2

g_882 = gen_882(13)
print("Cell 882 - generators")
print(list(g_882))
Cell 882 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 883 - generators

def gen_883(n):
    for k in range(n):
        yield k ** 2

g_883 = gen_883(14)
print("Cell 883 - generators")
print(list(g_883))
Cell 883 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 884 - generators

def gen_884(n):
    for k in range(n):
        yield k ** 2

g_884 = gen_884(15)
print("Cell 884 - generators")
print(list(g_884))
Cell 884 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 885 - generators

def gen_885(n):
    for k in range(n):
        yield k ** 2

g_885 = gen_885(16)
print("Cell 885 - generators")
print(list(g_885))
Cell 885 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 886 - generators

def gen_886(n):
    for k in range(n):
        yield k ** 2

g_886 = gen_886(17)
print("Cell 886 - generators")
print(list(g_886))
Cell 886 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 887 - generators

def gen_887(n):
    for k in range(n):
        yield k ** 2

g_887 = gen_887(18)
print("Cell 887 - generators")
print(list(g_887))
Cell 887 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 888 - generators

def gen_888(n):
    for k in range(n):
        yield k ** 2

g_888 = gen_888(19)
print("Cell 888 - generators")
print(list(g_888))
Cell 888 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 889 - generators

def gen_889(n):
    for k in range(n):
        yield k ** 2

g_889 = gen_889(20)
print("Cell 889 - generators")
print(list(g_889))
Cell 889 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 890 - generators

def gen_890(n):
    for k in range(n):
        yield k ** 2

g_890 = gen_890(21)
print("Cell 890 - generators")
print(list(g_890))
Cell 890 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 891 - generators

def gen_891(n):
    for k in range(n):
        yield k ** 2

g_891 = gen_891(22)
print("Cell 891 - generators")
print(list(g_891))
Cell 891 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 892 - generators

def gen_892(n):
    for k in range(n):
        yield k ** 2

g_892 = gen_892(23)
print("Cell 892 - generators")
print(list(g_892))
Cell 892 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 893 - generators

def gen_893(n):
    for k in range(n):
        yield k ** 2

g_893 = gen_893(24)
print("Cell 893 - generators")
print(list(g_893))
Cell 893 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 894 - generators

def gen_894(n):
    for k in range(n):
        yield k ** 2

g_894 = gen_894(25)
print("Cell 894 - generators")
print(list(g_894))
Cell 894 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 895 - generators

def gen_895(n):
    for k in range(n):
        yield k ** 2

g_895 = gen_895(26)
print("Cell 895 - generators")
print(list(g_895))
Cell 895 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 896 - generators

def gen_896(n):
    for k in range(n):
        yield k ** 2

g_896 = gen_896(27)
print("Cell 896 - generators")
print(list(g_896))
Cell 896 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 897 - generators

def gen_897(n):
    for k in range(n):
        yield k ** 2

g_897 = gen_897(28)
print("Cell 897 - generators")
print(list(g_897))
Cell 897 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 898 - generators

def gen_898(n):
    for k in range(n):
        yield k ** 2

g_898 = gen_898(29)
print("Cell 898 - generators")
print(list(g_898))
Cell 898 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 899 - generators

def gen_899(n):
    for k in range(n):
        yield k ** 2

g_899 = gen_899(30)
print("Cell 899 - generators")
print(list(g_899))
Cell 899 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 900 - generators

def gen_900(n):
    for k in range(n):
        yield k ** 2

g_900 = gen_900(1)
print("Cell 900 - generators")
print(list(g_900))
Cell 900 - generators
[0]
# Cell 901 - generators

def gen_901(n):
    for k in range(n):
        yield k ** 2

g_901 = gen_901(2)
print("Cell 901 - generators")
print(list(g_901))
Cell 901 - generators
[0, 1]
# Cell 902 - generators

def gen_902(n):
    for k in range(n):
        yield k ** 2

g_902 = gen_902(3)
print("Cell 902 - generators")
print(list(g_902))
Cell 902 - generators
[0, 1, 4]
# Cell 903 - generators

def gen_903(n):
    for k in range(n):
        yield k ** 2

g_903 = gen_903(4)
print("Cell 903 - generators")
print(list(g_903))
Cell 903 - generators
[0, 1, 4, 9]
# Cell 904 - generators

def gen_904(n):
    for k in range(n):
        yield k ** 2

g_904 = gen_904(5)
print("Cell 904 - generators")
print(list(g_904))
Cell 904 - generators
[0, 1, 4, 9, 16]
# Cell 905 - generators

def gen_905(n):
    for k in range(n):
        yield k ** 2

g_905 = gen_905(6)
print("Cell 905 - generators")
print(list(g_905))
Cell 905 - generators
[0, 1, 4, 9, 16, 25]
# Cell 906 - generators

def gen_906(n):
    for k in range(n):
        yield k ** 2

g_906 = gen_906(7)
print("Cell 906 - generators")
print(list(g_906))
Cell 906 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 907 - generators

def gen_907(n):
    for k in range(n):
        yield k ** 2

g_907 = gen_907(8)
print("Cell 907 - generators")
print(list(g_907))
Cell 907 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 908 - generators

def gen_908(n):
    for k in range(n):
        yield k ** 2

g_908 = gen_908(9)
print("Cell 908 - generators")
print(list(g_908))
Cell 908 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 909 - generators

def gen_909(n):
    for k in range(n):
        yield k ** 2

g_909 = gen_909(10)
print("Cell 909 - generators")
print(list(g_909))
Cell 909 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 910 - generators

def gen_910(n):
    for k in range(n):
        yield k ** 2

g_910 = gen_910(11)
print("Cell 910 - generators")
print(list(g_910))
Cell 910 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 911 - generators

def gen_911(n):
    for k in range(n):
        yield k ** 2

g_911 = gen_911(12)
print("Cell 911 - generators")
print(list(g_911))
Cell 911 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 912 - generators

def gen_912(n):
    for k in range(n):
        yield k ** 2

g_912 = gen_912(13)
print("Cell 912 - generators")
print(list(g_912))
Cell 912 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 913 - generators

def gen_913(n):
    for k in range(n):
        yield k ** 2

g_913 = gen_913(14)
print("Cell 913 - generators")
print(list(g_913))
Cell 913 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 914 - generators

def gen_914(n):
    for k in range(n):
        yield k ** 2

g_914 = gen_914(15)
print("Cell 914 - generators")
print(list(g_914))
Cell 914 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 915 - generators

def gen_915(n):
    for k in range(n):
        yield k ** 2

g_915 = gen_915(16)
print("Cell 915 - generators")
print(list(g_915))
Cell 915 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 916 - generators

def gen_916(n):
    for k in range(n):
        yield k ** 2

g_916 = gen_916(17)
print("Cell 916 - generators")
print(list(g_916))
Cell 916 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 917 - generators

def gen_917(n):
    for k in range(n):
        yield k ** 2

g_917 = gen_917(18)
print("Cell 917 - generators")
print(list(g_917))
Cell 917 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 918 - generators

def gen_918(n):
    for k in range(n):
        yield k ** 2

g_918 = gen_918(19)
print("Cell 918 - generators")
print(list(g_918))
Cell 918 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 919 - generators

def gen_919(n):
    for k in range(n):
        yield k ** 2

g_919 = gen_919(20)
print("Cell 919 - generators")
print(list(g_919))
Cell 919 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 920 - generators

def gen_920(n):
    for k in range(n):
        yield k ** 2

g_920 = gen_920(21)
print("Cell 920 - generators")
print(list(g_920))
Cell 920 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 921 - generators

def gen_921(n):
    for k in range(n):
        yield k ** 2

g_921 = gen_921(22)
print("Cell 921 - generators")
print(list(g_921))
Cell 921 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 922 - generators

def gen_922(n):
    for k in range(n):
        yield k ** 2

g_922 = gen_922(23)
print("Cell 922 - generators")
print(list(g_922))
Cell 922 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 923 - generators

def gen_923(n):
    for k in range(n):
        yield k ** 2

g_923 = gen_923(24)
print("Cell 923 - generators")
print(list(g_923))
Cell 923 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 924 - generators

def gen_924(n):
    for k in range(n):
        yield k ** 2

g_924 = gen_924(25)
print("Cell 924 - generators")
print(list(g_924))
Cell 924 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 925 - generators

def gen_925(n):
    for k in range(n):
        yield k ** 2

g_925 = gen_925(26)
print("Cell 925 - generators")
print(list(g_925))
Cell 925 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 926 - generators

def gen_926(n):
    for k in range(n):
        yield k ** 2

g_926 = gen_926(27)
print("Cell 926 - generators")
print(list(g_926))
Cell 926 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 927 - generators

def gen_927(n):
    for k in range(n):
        yield k ** 2

g_927 = gen_927(28)
print("Cell 927 - generators")
print(list(g_927))
Cell 927 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 928 - generators

def gen_928(n):
    for k in range(n):
        yield k ** 2

g_928 = gen_928(29)
print("Cell 928 - generators")
print(list(g_928))
Cell 928 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 929 - generators

def gen_929(n):
    for k in range(n):
        yield k ** 2

g_929 = gen_929(30)
print("Cell 929 - generators")
print(list(g_929))
Cell 929 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 930 - generators

def gen_930(n):
    for k in range(n):
        yield k ** 2

g_930 = gen_930(1)
print("Cell 930 - generators")
print(list(g_930))
Cell 930 - generators
[0]
# Cell 931 - generators

def gen_931(n):
    for k in range(n):
        yield k ** 2

g_931 = gen_931(2)
print("Cell 931 - generators")
print(list(g_931))
Cell 931 - generators
[0, 1]
# Cell 932 - generators

def gen_932(n):
    for k in range(n):
        yield k ** 2

g_932 = gen_932(3)
print("Cell 932 - generators")
print(list(g_932))
Cell 932 - generators
[0, 1, 4]
# Cell 933 - generators

def gen_933(n):
    for k in range(n):
        yield k ** 2

g_933 = gen_933(4)
print("Cell 933 - generators")
print(list(g_933))
Cell 933 - generators
[0, 1, 4, 9]
# Cell 934 - generators

def gen_934(n):
    for k in range(n):
        yield k ** 2

g_934 = gen_934(5)
print("Cell 934 - generators")
print(list(g_934))
Cell 934 - generators
[0, 1, 4, 9, 16]
# Cell 935 - generators

def gen_935(n):
    for k in range(n):
        yield k ** 2

g_935 = gen_935(6)
print("Cell 935 - generators")
print(list(g_935))
Cell 935 - generators
[0, 1, 4, 9, 16, 25]
# Cell 936 - generators

def gen_936(n):
    for k in range(n):
        yield k ** 2

g_936 = gen_936(7)
print("Cell 936 - generators")
print(list(g_936))
Cell 936 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 937 - generators

def gen_937(n):
    for k in range(n):
        yield k ** 2

g_937 = gen_937(8)
print("Cell 937 - generators")
print(list(g_937))
Cell 937 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 938 - generators

def gen_938(n):
    for k in range(n):
        yield k ** 2

g_938 = gen_938(9)
print("Cell 938 - generators")
print(list(g_938))
Cell 938 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 939 - generators

def gen_939(n):
    for k in range(n):
        yield k ** 2

g_939 = gen_939(10)
print("Cell 939 - generators")
print(list(g_939))
Cell 939 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 940 - generators

def gen_940(n):
    for k in range(n):
        yield k ** 2

g_940 = gen_940(11)
print("Cell 940 - generators")
print(list(g_940))
Cell 940 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 941 - generators

def gen_941(n):
    for k in range(n):
        yield k ** 2

g_941 = gen_941(12)
print("Cell 941 - generators")
print(list(g_941))
Cell 941 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 942 - generators

def gen_942(n):
    for k in range(n):
        yield k ** 2

g_942 = gen_942(13)
print("Cell 942 - generators")
print(list(g_942))
Cell 942 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 943 - generators

def gen_943(n):
    for k in range(n):
        yield k ** 2

g_943 = gen_943(14)
print("Cell 943 - generators")
print(list(g_943))
Cell 943 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 944 - generators

def gen_944(n):
    for k in range(n):
        yield k ** 2

g_944 = gen_944(15)
print("Cell 944 - generators")
print(list(g_944))
Cell 944 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 945 - generators

def gen_945(n):
    for k in range(n):
        yield k ** 2

g_945 = gen_945(16)
print("Cell 945 - generators")
print(list(g_945))
Cell 945 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 946 - generators

def gen_946(n):
    for k in range(n):
        yield k ** 2

g_946 = gen_946(17)
print("Cell 946 - generators")
print(list(g_946))
Cell 946 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 947 - generators

def gen_947(n):
    for k in range(n):
        yield k ** 2

g_947 = gen_947(18)
print("Cell 947 - generators")
print(list(g_947))
Cell 947 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 948 - generators

def gen_948(n):
    for k in range(n):
        yield k ** 2

g_948 = gen_948(19)
print("Cell 948 - generators")
print(list(g_948))
Cell 948 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 949 - generators

def gen_949(n):
    for k in range(n):
        yield k ** 2

g_949 = gen_949(20)
print("Cell 949 - generators")
print(list(g_949))
Cell 949 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 950 - generators

def gen_950(n):
    for k in range(n):
        yield k ** 2

g_950 = gen_950(21)
print("Cell 950 - generators")
print(list(g_950))
Cell 950 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 951 - generators

def gen_951(n):
    for k in range(n):
        yield k ** 2

g_951 = gen_951(22)
print("Cell 951 - generators")
print(list(g_951))
Cell 951 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 952 - generators

def gen_952(n):
    for k in range(n):
        yield k ** 2

g_952 = gen_952(23)
print("Cell 952 - generators")
print(list(g_952))
Cell 952 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 953 - generators

def gen_953(n):
    for k in range(n):
        yield k ** 2

g_953 = gen_953(24)
print("Cell 953 - generators")
print(list(g_953))
Cell 953 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 954 - generators

def gen_954(n):
    for k in range(n):
        yield k ** 2

g_954 = gen_954(25)
print("Cell 954 - generators")
print(list(g_954))
Cell 954 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 955 - generators

def gen_955(n):
    for k in range(n):
        yield k ** 2

g_955 = gen_955(26)
print("Cell 955 - generators")
print(list(g_955))
Cell 955 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 956 - generators

def gen_956(n):
    for k in range(n):
        yield k ** 2

g_956 = gen_956(27)
print("Cell 956 - generators")
print(list(g_956))
Cell 956 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 957 - generators

def gen_957(n):
    for k in range(n):
        yield k ** 2

g_957 = gen_957(28)
print("Cell 957 - generators")
print(list(g_957))
Cell 957 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 958 - generators

def gen_958(n):
    for k in range(n):
        yield k ** 2

g_958 = gen_958(29)
print("Cell 958 - generators")
print(list(g_958))
Cell 958 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 959 - generators

def gen_959(n):
    for k in range(n):
        yield k ** 2

g_959 = gen_959(30)
print("Cell 959 - generators")
print(list(g_959))
Cell 959 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 960 - generators

def gen_960(n):
    for k in range(n):
        yield k ** 2

g_960 = gen_960(1)
print("Cell 960 - generators")
print(list(g_960))
Cell 960 - generators
[0]
# Cell 961 - generators

def gen_961(n):
    for k in range(n):
        yield k ** 2

g_961 = gen_961(2)
print("Cell 961 - generators")
print(list(g_961))
Cell 961 - generators
[0, 1]
# Cell 962 - generators

def gen_962(n):
    for k in range(n):
        yield k ** 2

g_962 = gen_962(3)
print("Cell 962 - generators")
print(list(g_962))
Cell 962 - generators
[0, 1, 4]
# Cell 963 - generators

def gen_963(n):
    for k in range(n):
        yield k ** 2

g_963 = gen_963(4)
print("Cell 963 - generators")
print(list(g_963))
Cell 963 - generators
[0, 1, 4, 9]
# Cell 964 - generators

def gen_964(n):
    for k in range(n):
        yield k ** 2

g_964 = gen_964(5)
print("Cell 964 - generators")
print(list(g_964))
Cell 964 - generators
[0, 1, 4, 9, 16]
# Cell 965 - generators

def gen_965(n):
    for k in range(n):
        yield k ** 2

g_965 = gen_965(6)
print("Cell 965 - generators")
print(list(g_965))
Cell 965 - generators
[0, 1, 4, 9, 16, 25]
# Cell 966 - generators

def gen_966(n):
    for k in range(n):
        yield k ** 2

g_966 = gen_966(7)
print("Cell 966 - generators")
print(list(g_966))
Cell 966 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 967 - generators

def gen_967(n):
    for k in range(n):
        yield k ** 2

g_967 = gen_967(8)
print("Cell 967 - generators")
print(list(g_967))
Cell 967 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 968 - generators

def gen_968(n):
    for k in range(n):
        yield k ** 2

g_968 = gen_968(9)
print("Cell 968 - generators")
print(list(g_968))
Cell 968 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 969 - generators

def gen_969(n):
    for k in range(n):
        yield k ** 2

g_969 = gen_969(10)
print("Cell 969 - generators")
print(list(g_969))
Cell 969 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 970 - generators

def gen_970(n):
    for k in range(n):
        yield k ** 2

g_970 = gen_970(11)
print("Cell 970 - generators")
print(list(g_970))
Cell 970 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 971 - generators

def gen_971(n):
    for k in range(n):
        yield k ** 2

g_971 = gen_971(12)
print("Cell 971 - generators")
print(list(g_971))
Cell 971 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 972 - generators

def gen_972(n):
    for k in range(n):
        yield k ** 2

g_972 = gen_972(13)
print("Cell 972 - generators")
print(list(g_972))
Cell 972 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 973 - generators

def gen_973(n):
    for k in range(n):
        yield k ** 2

g_973 = gen_973(14)
print("Cell 973 - generators")
print(list(g_973))
Cell 973 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 974 - generators

def gen_974(n):
    for k in range(n):
        yield k ** 2

g_974 = gen_974(15)
print("Cell 974 - generators")
print(list(g_974))
Cell 974 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 975 - generators

def gen_975(n):
    for k in range(n):
        yield k ** 2

g_975 = gen_975(16)
print("Cell 975 - generators")
print(list(g_975))
Cell 975 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 976 - generators

def gen_976(n):
    for k in range(n):
        yield k ** 2

g_976 = gen_976(17)
print("Cell 976 - generators")
print(list(g_976))
Cell 976 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 977 - generators

def gen_977(n):
    for k in range(n):
        yield k ** 2

g_977 = gen_977(18)
print("Cell 977 - generators")
print(list(g_977))
Cell 977 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 978 - generators

def gen_978(n):
    for k in range(n):
        yield k ** 2

g_978 = gen_978(19)
print("Cell 978 - generators")
print(list(g_978))
Cell 978 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 979 - generators

def gen_979(n):
    for k in range(n):
        yield k ** 2

g_979 = gen_979(20)
print("Cell 979 - generators")
print(list(g_979))
Cell 979 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 980 - generators

def gen_980(n):
    for k in range(n):
        yield k ** 2

g_980 = gen_980(21)
print("Cell 980 - generators")
print(list(g_980))
Cell 980 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 981 - generators

def gen_981(n):
    for k in range(n):
        yield k ** 2

g_981 = gen_981(22)
print("Cell 981 - generators")
print(list(g_981))
Cell 981 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 982 - generators

def gen_982(n):
    for k in range(n):
        yield k ** 2

g_982 = gen_982(23)
print("Cell 982 - generators")
print(list(g_982))
Cell 982 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 983 - generators

def gen_983(n):
    for k in range(n):
        yield k ** 2

g_983 = gen_983(24)
print("Cell 983 - generators")
print(list(g_983))
Cell 983 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 984 - generators

def gen_984(n):
    for k in range(n):
        yield k ** 2

g_984 = gen_984(25)
print("Cell 984 - generators")
print(list(g_984))
Cell 984 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 985 - generators

def gen_985(n):
    for k in range(n):
        yield k ** 2

g_985 = gen_985(26)
print("Cell 985 - generators")
print(list(g_985))
Cell 985 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 986 - generators

def gen_986(n):
    for k in range(n):
        yield k ** 2

g_986 = gen_986(27)
print("Cell 986 - generators")
print(list(g_986))
Cell 986 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 987 - generators

def gen_987(n):
    for k in range(n):
        yield k ** 2

g_987 = gen_987(28)
print("Cell 987 - generators")
print(list(g_987))
Cell 987 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 988 - generators

def gen_988(n):
    for k in range(n):
        yield k ** 2

g_988 = gen_988(29)
print("Cell 988 - generators")
print(list(g_988))
Cell 988 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 989 - generators

def gen_989(n):
    for k in range(n):
        yield k ** 2

g_989 = gen_989(30)
print("Cell 989 - generators")
print(list(g_989))
Cell 989 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 990 - generators

def gen_990(n):
    for k in range(n):
        yield k ** 2

g_990 = gen_990(1)
print("Cell 990 - generators")
print(list(g_990))
Cell 990 - generators
[0]
# Cell 991 - generators

def gen_991(n):
    for k in range(n):
        yield k ** 2

g_991 = gen_991(2)
print("Cell 991 - generators")
print(list(g_991))
Cell 991 - generators
[0, 1]
# Cell 992 - generators

def gen_992(n):
    for k in range(n):
        yield k ** 2

g_992 = gen_992(3)
print("Cell 992 - generators")
print(list(g_992))
Cell 992 - generators
[0, 1, 4]
# Cell 993 - generators

def gen_993(n):
    for k in range(n):
        yield k ** 2

g_993 = gen_993(4)
print("Cell 993 - generators")
print(list(g_993))
Cell 993 - generators
[0, 1, 4, 9]
# Cell 994 - generators

def gen_994(n):
    for k in range(n):
        yield k ** 2

g_994 = gen_994(5)
print("Cell 994 - generators")
print(list(g_994))
Cell 994 - generators
[0, 1, 4, 9, 16]
# Cell 995 - generators

def gen_995(n):
    for k in range(n):
        yield k ** 2

g_995 = gen_995(6)
print("Cell 995 - generators")
print(list(g_995))
Cell 995 - generators
[0, 1, 4, 9, 16, 25]
# Cell 996 - generators

def gen_996(n):
    for k in range(n):
        yield k ** 2

g_996 = gen_996(7)
print("Cell 996 - generators")
print(list(g_996))
Cell 996 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 997 - generators

def gen_997(n):
    for k in range(n):
        yield k ** 2

g_997 = gen_997(8)
print("Cell 997 - generators")
print(list(g_997))
Cell 997 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 998 - generators

def gen_998(n):
    for k in range(n):
        yield k ** 2

g_998 = gen_998(9)
print("Cell 998 - generators")
print(list(g_998))
Cell 998 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 999 - generators

def gen_999(n):
    for k in range(n):
        yield k ** 2

g_999 = gen_999(10)
print("Cell 999 - generators")
print(list(g_999))
Cell 999 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 1000 - generators

def gen_1000(n):
    for k in range(n):
        yield k ** 2

g_1000 = gen_1000(11)
print("Cell 1000 - generators")
print(list(g_1000))
Cell 1000 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 1001 - generators

def gen_1001(n):
    for k in range(n):
        yield k ** 2

g_1001 = gen_1001(12)
print("Cell 1001 - generators")
print(list(g_1001))
Cell 1001 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 1002 - generators

def gen_1002(n):
    for k in range(n):
        yield k ** 2

g_1002 = gen_1002(13)
print("Cell 1002 - generators")
print(list(g_1002))
Cell 1002 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 1003 - generators

def gen_1003(n):
    for k in range(n):
        yield k ** 2

g_1003 = gen_1003(14)
print("Cell 1003 - generators")
print(list(g_1003))
Cell 1003 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 1004 - generators

def gen_1004(n):
    for k in range(n):
        yield k ** 2

g_1004 = gen_1004(15)
print("Cell 1004 - generators")
print(list(g_1004))
Cell 1004 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 1005 - generators

def gen_1005(n):
    for k in range(n):
        yield k ** 2

g_1005 = gen_1005(16)
print("Cell 1005 - generators")
print(list(g_1005))
Cell 1005 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 1006 - generators

def gen_1006(n):
    for k in range(n):
        yield k ** 2

g_1006 = gen_1006(17)
print("Cell 1006 - generators")
print(list(g_1006))
Cell 1006 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 1007 - generators

def gen_1007(n):
    for k in range(n):
        yield k ** 2

g_1007 = gen_1007(18)
print("Cell 1007 - generators")
print(list(g_1007))
Cell 1007 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 1008 - generators

def gen_1008(n):
    for k in range(n):
        yield k ** 2

g_1008 = gen_1008(19)
print("Cell 1008 - generators")
print(list(g_1008))
Cell 1008 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 1009 - generators

def gen_1009(n):
    for k in range(n):
        yield k ** 2

g_1009 = gen_1009(20)
print("Cell 1009 - generators")
print(list(g_1009))
Cell 1009 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 1010 - generators

def gen_1010(n):
    for k in range(n):
        yield k ** 2

g_1010 = gen_1010(21)
print("Cell 1010 - generators")
print(list(g_1010))
Cell 1010 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 1011 - generators

def gen_1011(n):
    for k in range(n):
        yield k ** 2

g_1011 = gen_1011(22)
print("Cell 1011 - generators")
print(list(g_1011))
Cell 1011 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 1012 - generators

def gen_1012(n):
    for k in range(n):
        yield k ** 2

g_1012 = gen_1012(23)
print("Cell 1012 - generators")
print(list(g_1012))
Cell 1012 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 1013 - generators

def gen_1013(n):
    for k in range(n):
        yield k ** 2

g_1013 = gen_1013(24)
print("Cell 1013 - generators")
print(list(g_1013))
Cell 1013 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 1014 - generators

def gen_1014(n):
    for k in range(n):
        yield k ** 2

g_1014 = gen_1014(25)
print("Cell 1014 - generators")
print(list(g_1014))
Cell 1014 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 1015 - generators

def gen_1015(n):
    for k in range(n):
        yield k ** 2

g_1015 = gen_1015(26)
print("Cell 1015 - generators")
print(list(g_1015))
Cell 1015 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 1016 - generators

def gen_1016(n):
    for k in range(n):
        yield k ** 2

g_1016 = gen_1016(27)
print("Cell 1016 - generators")
print(list(g_1016))
Cell 1016 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 1017 - generators

def gen_1017(n):
    for k in range(n):
        yield k ** 2

g_1017 = gen_1017(28)
print("Cell 1017 - generators")
print(list(g_1017))
Cell 1017 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 1018 - generators

def gen_1018(n):
    for k in range(n):
        yield k ** 2

g_1018 = gen_1018(29)
print("Cell 1018 - generators")
print(list(g_1018))
Cell 1018 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 1019 - generators

def gen_1019(n):
    for k in range(n):
        yield k ** 2

g_1019 = gen_1019(30)
print("Cell 1019 - generators")
print(list(g_1019))
Cell 1019 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 1020 - generators

def gen_1020(n):
    for k in range(n):
        yield k ** 2

g_1020 = gen_1020(1)
print("Cell 1020 - generators")
print(list(g_1020))
Cell 1020 - generators
[0]
# Cell 1021 - generators

def gen_1021(n):
    for k in range(n):
        yield k ** 2

g_1021 = gen_1021(2)
print("Cell 1021 - generators")
print(list(g_1021))
Cell 1021 - generators
[0, 1]
# Cell 1022 - generators

def gen_1022(n):
    for k in range(n):
        yield k ** 2

g_1022 = gen_1022(3)
print("Cell 1022 - generators")
print(list(g_1022))
Cell 1022 - generators
[0, 1, 4]
# Cell 1023 - generators

def gen_1023(n):
    for k in range(n):
        yield k ** 2

g_1023 = gen_1023(4)
print("Cell 1023 - generators")
print(list(g_1023))
Cell 1023 - generators
[0, 1, 4, 9]
# Cell 1024 - generators

def gen_1024(n):
    for k in range(n):
        yield k ** 2

g_1024 = gen_1024(5)
print("Cell 1024 - generators")
print(list(g_1024))
Cell 1024 - generators
[0, 1, 4, 9, 16]
# Cell 1025 - generators

def gen_1025(n):
    for k in range(n):
        yield k ** 2

g_1025 = gen_1025(6)
print("Cell 1025 - generators")
print(list(g_1025))
Cell 1025 - generators
[0, 1, 4, 9, 16, 25]
# Cell 1026 - generators

def gen_1026(n):
    for k in range(n):
        yield k ** 2

g_1026 = gen_1026(7)
print("Cell 1026 - generators")
print(list(g_1026))
Cell 1026 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 1027 - generators

def gen_1027(n):
    for k in range(n):
        yield k ** 2

g_1027 = gen_1027(8)
print("Cell 1027 - generators")
print(list(g_1027))
Cell 1027 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 1028 - generators

def gen_1028(n):
    for k in range(n):
        yield k ** 2

g_1028 = gen_1028(9)
print("Cell 1028 - generators")
print(list(g_1028))
Cell 1028 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 1029 - generators

def gen_1029(n):
    for k in range(n):
        yield k ** 2

g_1029 = gen_1029(10)
print("Cell 1029 - generators")
print(list(g_1029))
Cell 1029 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 1030 - generators

def gen_1030(n):
    for k in range(n):
        yield k ** 2

g_1030 = gen_1030(11)
print("Cell 1030 - generators")
print(list(g_1030))
Cell 1030 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 1031 - generators

def gen_1031(n):
    for k in range(n):
        yield k ** 2

g_1031 = gen_1031(12)
print("Cell 1031 - generators")
print(list(g_1031))
Cell 1031 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 1032 - generators

def gen_1032(n):
    for k in range(n):
        yield k ** 2

g_1032 = gen_1032(13)
print("Cell 1032 - generators")
print(list(g_1032))
Cell 1032 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 1033 - generators

def gen_1033(n):
    for k in range(n):
        yield k ** 2

g_1033 = gen_1033(14)
print("Cell 1033 - generators")
print(list(g_1033))
Cell 1033 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 1034 - generators

def gen_1034(n):
    for k in range(n):
        yield k ** 2

g_1034 = gen_1034(15)
print("Cell 1034 - generators")
print(list(g_1034))
Cell 1034 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 1035 - generators

def gen_1035(n):
    for k in range(n):
        yield k ** 2

g_1035 = gen_1035(16)
print("Cell 1035 - generators")
print(list(g_1035))
Cell 1035 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 1036 - generators

def gen_1036(n):
    for k in range(n):
        yield k ** 2

g_1036 = gen_1036(17)
print("Cell 1036 - generators")
print(list(g_1036))
Cell 1036 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 1037 - generators

def gen_1037(n):
    for k in range(n):
        yield k ** 2

g_1037 = gen_1037(18)
print("Cell 1037 - generators")
print(list(g_1037))
Cell 1037 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 1038 - generators

def gen_1038(n):
    for k in range(n):
        yield k ** 2

g_1038 = gen_1038(19)
print("Cell 1038 - generators")
print(list(g_1038))
Cell 1038 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 1039 - generators

def gen_1039(n):
    for k in range(n):
        yield k ** 2

g_1039 = gen_1039(20)
print("Cell 1039 - generators")
print(list(g_1039))
Cell 1039 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 1040 - generators

def gen_1040(n):
    for k in range(n):
        yield k ** 2

g_1040 = gen_1040(21)
print("Cell 1040 - generators")
print(list(g_1040))
Cell 1040 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 1041 - generators

def gen_1041(n):
    for k in range(n):
        yield k ** 2

g_1041 = gen_1041(22)
print("Cell 1041 - generators")
print(list(g_1041))
Cell 1041 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 1042 - generators

def gen_1042(n):
    for k in range(n):
        yield k ** 2

g_1042 = gen_1042(23)
print("Cell 1042 - generators")
print(list(g_1042))
Cell 1042 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 1043 - generators

def gen_1043(n):
    for k in range(n):
        yield k ** 2

g_1043 = gen_1043(24)
print("Cell 1043 - generators")
print(list(g_1043))
Cell 1043 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 1044 - generators

def gen_1044(n):
    for k in range(n):
        yield k ** 2

g_1044 = gen_1044(25)
print("Cell 1044 - generators")
print(list(g_1044))
Cell 1044 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 1045 - generators

def gen_1045(n):
    for k in range(n):
        yield k ** 2

g_1045 = gen_1045(26)
print("Cell 1045 - generators")
print(list(g_1045))
Cell 1045 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 1046 - generators

def gen_1046(n):
    for k in range(n):
        yield k ** 2

g_1046 = gen_1046(27)
print("Cell 1046 - generators")
print(list(g_1046))
Cell 1046 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 1047 - generators

def gen_1047(n):
    for k in range(n):
        yield k ** 2

g_1047 = gen_1047(28)
print("Cell 1047 - generators")
print(list(g_1047))
Cell 1047 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 1048 - generators

def gen_1048(n):
    for k in range(n):
        yield k ** 2

g_1048 = gen_1048(29)
print("Cell 1048 - generators")
print(list(g_1048))
Cell 1048 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 1049 - generators

def gen_1049(n):
    for k in range(n):
        yield k ** 2

g_1049 = gen_1049(30)
print("Cell 1049 - generators")
print(list(g_1049))
Cell 1049 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 1050 - generators

def gen_1050(n):
    for k in range(n):
        yield k ** 2

g_1050 = gen_1050(1)
print("Cell 1050 - generators")
print(list(g_1050))
Cell 1050 - generators
[0]
# Cell 1051 - generators

def gen_1051(n):
    for k in range(n):
        yield k ** 2

g_1051 = gen_1051(2)
print("Cell 1051 - generators")
print(list(g_1051))
Cell 1051 - generators
[0, 1]
# Cell 1052 - generators

def gen_1052(n):
    for k in range(n):
        yield k ** 2

g_1052 = gen_1052(3)
print("Cell 1052 - generators")
print(list(g_1052))
Cell 1052 - generators
[0, 1, 4]
# Cell 1053 - generators

def gen_1053(n):
    for k in range(n):
        yield k ** 2

g_1053 = gen_1053(4)
print("Cell 1053 - generators")
print(list(g_1053))
Cell 1053 - generators
[0, 1, 4, 9]
# Cell 1054 - generators

def gen_1054(n):
    for k in range(n):
        yield k ** 2

g_1054 = gen_1054(5)
print("Cell 1054 - generators")
print(list(g_1054))
Cell 1054 - generators
[0, 1, 4, 9, 16]
# Cell 1055 - generators

def gen_1055(n):
    for k in range(n):
        yield k ** 2

g_1055 = gen_1055(6)
print("Cell 1055 - generators")
print(list(g_1055))
Cell 1055 - generators
[0, 1, 4, 9, 16, 25]
# Cell 1056 - generators

def gen_1056(n):
    for k in range(n):
        yield k ** 2

g_1056 = gen_1056(7)
print("Cell 1056 - generators")
print(list(g_1056))
Cell 1056 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 1057 - generators

def gen_1057(n):
    for k in range(n):
        yield k ** 2

g_1057 = gen_1057(8)
print("Cell 1057 - generators")
print(list(g_1057))
Cell 1057 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 1058 - generators

def gen_1058(n):
    for k in range(n):
        yield k ** 2

g_1058 = gen_1058(9)
print("Cell 1058 - generators")
print(list(g_1058))
Cell 1058 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 1059 - generators

def gen_1059(n):
    for k in range(n):
        yield k ** 2

g_1059 = gen_1059(10)
print("Cell 1059 - generators")
print(list(g_1059))
Cell 1059 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 1060 - generators

def gen_1060(n):
    for k in range(n):
        yield k ** 2

g_1060 = gen_1060(11)
print("Cell 1060 - generators")
print(list(g_1060))
Cell 1060 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 1061 - generators

def gen_1061(n):
    for k in range(n):
        yield k ** 2

g_1061 = gen_1061(12)
print("Cell 1061 - generators")
print(list(g_1061))
Cell 1061 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 1062 - generators

def gen_1062(n):
    for k in range(n):
        yield k ** 2

g_1062 = gen_1062(13)
print("Cell 1062 - generators")
print(list(g_1062))
Cell 1062 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 1063 - generators

def gen_1063(n):
    for k in range(n):
        yield k ** 2

g_1063 = gen_1063(14)
print("Cell 1063 - generators")
print(list(g_1063))
Cell 1063 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 1064 - generators

def gen_1064(n):
    for k in range(n):
        yield k ** 2

g_1064 = gen_1064(15)
print("Cell 1064 - generators")
print(list(g_1064))
Cell 1064 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 1065 - generators

def gen_1065(n):
    for k in range(n):
        yield k ** 2

g_1065 = gen_1065(16)
print("Cell 1065 - generators")
print(list(g_1065))
Cell 1065 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 1066 - generators

def gen_1066(n):
    for k in range(n):
        yield k ** 2

g_1066 = gen_1066(17)
print("Cell 1066 - generators")
print(list(g_1066))
Cell 1066 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 1067 - generators

def gen_1067(n):
    for k in range(n):
        yield k ** 2

g_1067 = gen_1067(18)
print("Cell 1067 - generators")
print(list(g_1067))
Cell 1067 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 1068 - generators

def gen_1068(n):
    for k in range(n):
        yield k ** 2

g_1068 = gen_1068(19)
print("Cell 1068 - generators")
print(list(g_1068))
Cell 1068 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 1069 - generators

def gen_1069(n):
    for k in range(n):
        yield k ** 2

g_1069 = gen_1069(20)
print("Cell 1069 - generators")
print(list(g_1069))
Cell 1069 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 1070 - generators

def gen_1070(n):
    for k in range(n):
        yield k ** 2

g_1070 = gen_1070(21)
print("Cell 1070 - generators")
print(list(g_1070))
Cell 1070 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 1071 - generators

def gen_1071(n):
    for k in range(n):
        yield k ** 2

g_1071 = gen_1071(22)
print("Cell 1071 - generators")
print(list(g_1071))
Cell 1071 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 1072 - generators

def gen_1072(n):
    for k in range(n):
        yield k ** 2

g_1072 = gen_1072(23)
print("Cell 1072 - generators")
print(list(g_1072))
Cell 1072 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 1073 - generators

def gen_1073(n):
    for k in range(n):
        yield k ** 2

g_1073 = gen_1073(24)
print("Cell 1073 - generators")
print(list(g_1073))
Cell 1073 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 1074 - generators

def gen_1074(n):
    for k in range(n):
        yield k ** 2

g_1074 = gen_1074(25)
print("Cell 1074 - generators")
print(list(g_1074))
Cell 1074 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 1075 - generators

def gen_1075(n):
    for k in range(n):
        yield k ** 2

g_1075 = gen_1075(26)
print("Cell 1075 - generators")
print(list(g_1075))
Cell 1075 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 1076 - generators

def gen_1076(n):
    for k in range(n):
        yield k ** 2

g_1076 = gen_1076(27)
print("Cell 1076 - generators")
print(list(g_1076))
Cell 1076 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 1077 - generators

def gen_1077(n):
    for k in range(n):
        yield k ** 2

g_1077 = gen_1077(28)
print("Cell 1077 - generators")
print(list(g_1077))
Cell 1077 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 1078 - generators

def gen_1078(n):
    for k in range(n):
        yield k ** 2

g_1078 = gen_1078(29)
print("Cell 1078 - generators")
print(list(g_1078))
Cell 1078 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 1079 - generators

def gen_1079(n):
    for k in range(n):
        yield k ** 2

g_1079 = gen_1079(30)
print("Cell 1079 - generators")
print(list(g_1079))
Cell 1079 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 1080 - generators

def gen_1080(n):
    for k in range(n):
        yield k ** 2

g_1080 = gen_1080(1)
print("Cell 1080 - generators")
print(list(g_1080))
Cell 1080 - generators
[0]
# Cell 1081 - generators

def gen_1081(n):
    for k in range(n):
        yield k ** 2

g_1081 = gen_1081(2)
print("Cell 1081 - generators")
print(list(g_1081))
Cell 1081 - generators
[0, 1]
# Cell 1082 - generators

def gen_1082(n):
    for k in range(n):
        yield k ** 2

g_1082 = gen_1082(3)
print("Cell 1082 - generators")
print(list(g_1082))
Cell 1082 - generators
[0, 1, 4]
# Cell 1083 - generators

def gen_1083(n):
    for k in range(n):
        yield k ** 2

g_1083 = gen_1083(4)
print("Cell 1083 - generators")
print(list(g_1083))
Cell 1083 - generators
[0, 1, 4, 9]
# Cell 1084 - generators

def gen_1084(n):
    for k in range(n):
        yield k ** 2

g_1084 = gen_1084(5)
print("Cell 1084 - generators")
print(list(g_1084))
Cell 1084 - generators
[0, 1, 4, 9, 16]
# Cell 1085 - generators

def gen_1085(n):
    for k in range(n):
        yield k ** 2

g_1085 = gen_1085(6)
print("Cell 1085 - generators")
print(list(g_1085))
Cell 1085 - generators
[0, 1, 4, 9, 16, 25]
# Cell 1086 - generators

def gen_1086(n):
    for k in range(n):
        yield k ** 2

g_1086 = gen_1086(7)
print("Cell 1086 - generators")
print(list(g_1086))
Cell 1086 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 1087 - generators

def gen_1087(n):
    for k in range(n):
        yield k ** 2

g_1087 = gen_1087(8)
print("Cell 1087 - generators")
print(list(g_1087))
Cell 1087 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 1088 - generators

def gen_1088(n):
    for k in range(n):
        yield k ** 2

g_1088 = gen_1088(9)
print("Cell 1088 - generators")
print(list(g_1088))
Cell 1088 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 1089 - generators

def gen_1089(n):
    for k in range(n):
        yield k ** 2

g_1089 = gen_1089(10)
print("Cell 1089 - generators")
print(list(g_1089))
Cell 1089 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 1090 - generators

def gen_1090(n):
    for k in range(n):
        yield k ** 2

g_1090 = gen_1090(11)
print("Cell 1090 - generators")
print(list(g_1090))
Cell 1090 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 1091 - generators

def gen_1091(n):
    for k in range(n):
        yield k ** 2

g_1091 = gen_1091(12)
print("Cell 1091 - generators")
print(list(g_1091))
Cell 1091 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 1092 - generators

def gen_1092(n):
    for k in range(n):
        yield k ** 2

g_1092 = gen_1092(13)
print("Cell 1092 - generators")
print(list(g_1092))
Cell 1092 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 1093 - generators

def gen_1093(n):
    for k in range(n):
        yield k ** 2

g_1093 = gen_1093(14)
print("Cell 1093 - generators")
print(list(g_1093))
Cell 1093 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 1094 - generators

def gen_1094(n):
    for k in range(n):
        yield k ** 2

g_1094 = gen_1094(15)
print("Cell 1094 - generators")
print(list(g_1094))
Cell 1094 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 1095 - generators

def gen_1095(n):
    for k in range(n):
        yield k ** 2

g_1095 = gen_1095(16)
print("Cell 1095 - generators")
print(list(g_1095))
Cell 1095 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 1096 - generators

def gen_1096(n):
    for k in range(n):
        yield k ** 2

g_1096 = gen_1096(17)
print("Cell 1096 - generators")
print(list(g_1096))
Cell 1096 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 1097 - generators

def gen_1097(n):
    for k in range(n):
        yield k ** 2

g_1097 = gen_1097(18)
print("Cell 1097 - generators")
print(list(g_1097))
Cell 1097 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 1098 - generators

def gen_1098(n):
    for k in range(n):
        yield k ** 2

g_1098 = gen_1098(19)
print("Cell 1098 - generators")
print(list(g_1098))
Cell 1098 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 1099 - generators

def gen_1099(n):
    for k in range(n):
        yield k ** 2

g_1099 = gen_1099(20)
print("Cell 1099 - generators")
print(list(g_1099))
Cell 1099 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 1100 - generators

def gen_1100(n):
    for k in range(n):
        yield k ** 2

g_1100 = gen_1100(21)
print("Cell 1100 - generators")
print(list(g_1100))
Cell 1100 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 1101 - generators

def gen_1101(n):
    for k in range(n):
        yield k ** 2

g_1101 = gen_1101(22)
print("Cell 1101 - generators")
print(list(g_1101))
Cell 1101 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 1102 - generators

def gen_1102(n):
    for k in range(n):
        yield k ** 2

g_1102 = gen_1102(23)
print("Cell 1102 - generators")
print(list(g_1102))
Cell 1102 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 1103 - generators

def gen_1103(n):
    for k in range(n):
        yield k ** 2

g_1103 = gen_1103(24)
print("Cell 1103 - generators")
print(list(g_1103))
Cell 1103 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 1104 - generators

def gen_1104(n):
    for k in range(n):
        yield k ** 2

g_1104 = gen_1104(25)
print("Cell 1104 - generators")
print(list(g_1104))
Cell 1104 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 1105 - generators

def gen_1105(n):
    for k in range(n):
        yield k ** 2

g_1105 = gen_1105(26)
print("Cell 1105 - generators")
print(list(g_1105))
Cell 1105 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 1106 - generators

def gen_1106(n):
    for k in range(n):
        yield k ** 2

g_1106 = gen_1106(27)
print("Cell 1106 - generators")
print(list(g_1106))
Cell 1106 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 1107 - generators

def gen_1107(n):
    for k in range(n):
        yield k ** 2

g_1107 = gen_1107(28)
print("Cell 1107 - generators")
print(list(g_1107))
Cell 1107 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 1108 - generators

def gen_1108(n):
    for k in range(n):
        yield k ** 2

g_1108 = gen_1108(29)
print("Cell 1108 - generators")
print(list(g_1108))
Cell 1108 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 1109 - generators

def gen_1109(n):
    for k in range(n):
        yield k ** 2

g_1109 = gen_1109(30)
print("Cell 1109 - generators")
print(list(g_1109))
Cell 1109 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 1110 - generators

def gen_1110(n):
    for k in range(n):
        yield k ** 2

g_1110 = gen_1110(1)
print("Cell 1110 - generators")
print(list(g_1110))
Cell 1110 - generators
[0]
# Cell 1111 - generators

def gen_1111(n):
    for k in range(n):
        yield k ** 2

g_1111 = gen_1111(2)
print("Cell 1111 - generators")
print(list(g_1111))
Cell 1111 - generators
[0, 1]
# Cell 1112 - generators

def gen_1112(n):
    for k in range(n):
        yield k ** 2

g_1112 = gen_1112(3)
print("Cell 1112 - generators")
print(list(g_1112))
Cell 1112 - generators
[0, 1, 4]
# Cell 1113 - generators

def gen_1113(n):
    for k in range(n):
        yield k ** 2

g_1113 = gen_1113(4)
print("Cell 1113 - generators")
print(list(g_1113))
Cell 1113 - generators
[0, 1, 4, 9]
# Cell 1114 - generators

def gen_1114(n):
    for k in range(n):
        yield k ** 2

g_1114 = gen_1114(5)
print("Cell 1114 - generators")
print(list(g_1114))
Cell 1114 - generators
[0, 1, 4, 9, 16]
# Cell 1115 - generators

def gen_1115(n):
    for k in range(n):
        yield k ** 2

g_1115 = gen_1115(6)
print("Cell 1115 - generators")
print(list(g_1115))
Cell 1115 - generators
[0, 1, 4, 9, 16, 25]
# Cell 1116 - generators

def gen_1116(n):
    for k in range(n):
        yield k ** 2

g_1116 = gen_1116(7)
print("Cell 1116 - generators")
print(list(g_1116))
Cell 1116 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 1117 - generators

def gen_1117(n):
    for k in range(n):
        yield k ** 2

g_1117 = gen_1117(8)
print("Cell 1117 - generators")
print(list(g_1117))
Cell 1117 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 1118 - generators

def gen_1118(n):
    for k in range(n):
        yield k ** 2

g_1118 = gen_1118(9)
print("Cell 1118 - generators")
print(list(g_1118))
Cell 1118 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 1119 - generators

def gen_1119(n):
    for k in range(n):
        yield k ** 2

g_1119 = gen_1119(10)
print("Cell 1119 - generators")
print(list(g_1119))
Cell 1119 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 1120 - generators

def gen_1120(n):
    for k in range(n):
        yield k ** 2

g_1120 = gen_1120(11)
print("Cell 1120 - generators")
print(list(g_1120))
Cell 1120 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 1121 - generators

def gen_1121(n):
    for k in range(n):
        yield k ** 2

g_1121 = gen_1121(12)
print("Cell 1121 - generators")
print(list(g_1121))
Cell 1121 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 1122 - generators

def gen_1122(n):
    for k in range(n):
        yield k ** 2

g_1122 = gen_1122(13)
print("Cell 1122 - generators")
print(list(g_1122))
Cell 1122 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 1123 - generators

def gen_1123(n):
    for k in range(n):
        yield k ** 2

g_1123 = gen_1123(14)
print("Cell 1123 - generators")
print(list(g_1123))
Cell 1123 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 1124 - generators

def gen_1124(n):
    for k in range(n):
        yield k ** 2

g_1124 = gen_1124(15)
print("Cell 1124 - generators")
print(list(g_1124))
Cell 1124 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 1125 - generators

def gen_1125(n):
    for k in range(n):
        yield k ** 2

g_1125 = gen_1125(16)
print("Cell 1125 - generators")
print(list(g_1125))
Cell 1125 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 1126 - generators

def gen_1126(n):
    for k in range(n):
        yield k ** 2

g_1126 = gen_1126(17)
print("Cell 1126 - generators")
print(list(g_1126))
Cell 1126 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 1127 - generators

def gen_1127(n):
    for k in range(n):
        yield k ** 2

g_1127 = gen_1127(18)
print("Cell 1127 - generators")
print(list(g_1127))
Cell 1127 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 1128 - generators

def gen_1128(n):
    for k in range(n):
        yield k ** 2

g_1128 = gen_1128(19)
print("Cell 1128 - generators")
print(list(g_1128))
Cell 1128 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 1129 - generators

def gen_1129(n):
    for k in range(n):
        yield k ** 2

g_1129 = gen_1129(20)
print("Cell 1129 - generators")
print(list(g_1129))
Cell 1129 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 1130 - generators

def gen_1130(n):
    for k in range(n):
        yield k ** 2

g_1130 = gen_1130(21)
print("Cell 1130 - generators")
print(list(g_1130))
Cell 1130 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 1131 - generators

def gen_1131(n):
    for k in range(n):
        yield k ** 2

g_1131 = gen_1131(22)
print("Cell 1131 - generators")
print(list(g_1131))
Cell 1131 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 1132 - generators

def gen_1132(n):
    for k in range(n):
        yield k ** 2

g_1132 = gen_1132(23)
print("Cell 1132 - generators")
print(list(g_1132))
Cell 1132 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 1133 - generators

def gen_1133(n):
    for k in range(n):
        yield k ** 2

g_1133 = gen_1133(24)
print("Cell 1133 - generators")
print(list(g_1133))
Cell 1133 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 1134 - generators

def gen_1134(n):
    for k in range(n):
        yield k ** 2

g_1134 = gen_1134(25)
print("Cell 1134 - generators")
print(list(g_1134))
Cell 1134 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 1135 - generators

def gen_1135(n):
    for k in range(n):
        yield k ** 2

g_1135 = gen_1135(26)
print("Cell 1135 - generators")
print(list(g_1135))
Cell 1135 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 1136 - generators

def gen_1136(n):
    for k in range(n):
        yield k ** 2

g_1136 = gen_1136(27)
print("Cell 1136 - generators")
print(list(g_1136))
Cell 1136 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 1137 - generators

def gen_1137(n):
    for k in range(n):
        yield k ** 2

g_1137 = gen_1137(28)
print("Cell 1137 - generators")
print(list(g_1137))
Cell 1137 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 1138 - generators

def gen_1138(n):
    for k in range(n):
        yield k ** 2

g_1138 = gen_1138(29)
print("Cell 1138 - generators")
print(list(g_1138))
Cell 1138 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 1139 - generators

def gen_1139(n):
    for k in range(n):
        yield k ** 2

g_1139 = gen_1139(30)
print("Cell 1139 - generators")
print(list(g_1139))
Cell 1139 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 1140 - generators

def gen_1140(n):
    for k in range(n):
        yield k ** 2

g_1140 = gen_1140(1)
print("Cell 1140 - generators")
print(list(g_1140))
Cell 1140 - generators
[0]
# Cell 1141 - generators

def gen_1141(n):
    for k in range(n):
        yield k ** 2

g_1141 = gen_1141(2)
print("Cell 1141 - generators")
print(list(g_1141))
Cell 1141 - generators
[0, 1]
# Cell 1142 - generators

def gen_1142(n):
    for k in range(n):
        yield k ** 2

g_1142 = gen_1142(3)
print("Cell 1142 - generators")
print(list(g_1142))
Cell 1142 - generators
[0, 1, 4]
# Cell 1143 - generators

def gen_1143(n):
    for k in range(n):
        yield k ** 2

g_1143 = gen_1143(4)
print("Cell 1143 - generators")
print(list(g_1143))
Cell 1143 - generators
[0, 1, 4, 9]
# Cell 1144 - generators

def gen_1144(n):
    for k in range(n):
        yield k ** 2

g_1144 = gen_1144(5)
print("Cell 1144 - generators")
print(list(g_1144))
Cell 1144 - generators
[0, 1, 4, 9, 16]
# Cell 1145 - generators

def gen_1145(n):
    for k in range(n):
        yield k ** 2

g_1145 = gen_1145(6)
print("Cell 1145 - generators")
print(list(g_1145))
Cell 1145 - generators
[0, 1, 4, 9, 16, 25]
# Cell 1146 - generators

def gen_1146(n):
    for k in range(n):
        yield k ** 2

g_1146 = gen_1146(7)
print("Cell 1146 - generators")
print(list(g_1146))
Cell 1146 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 1147 - generators

def gen_1147(n):
    for k in range(n):
        yield k ** 2

g_1147 = gen_1147(8)
print("Cell 1147 - generators")
print(list(g_1147))
Cell 1147 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 1148 - generators

def gen_1148(n):
    for k in range(n):
        yield k ** 2

g_1148 = gen_1148(9)
print("Cell 1148 - generators")
print(list(g_1148))
Cell 1148 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 1149 - generators

def gen_1149(n):
    for k in range(n):
        yield k ** 2

g_1149 = gen_1149(10)
print("Cell 1149 - generators")
print(list(g_1149))
Cell 1149 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 1150 - generators

def gen_1150(n):
    for k in range(n):
        yield k ** 2

g_1150 = gen_1150(11)
print("Cell 1150 - generators")
print(list(g_1150))
Cell 1150 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 1151 - generators

def gen_1151(n):
    for k in range(n):
        yield k ** 2

g_1151 = gen_1151(12)
print("Cell 1151 - generators")
print(list(g_1151))
Cell 1151 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 1152 - generators

def gen_1152(n):
    for k in range(n):
        yield k ** 2

g_1152 = gen_1152(13)
print("Cell 1152 - generators")
print(list(g_1152))
Cell 1152 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 1153 - generators

def gen_1153(n):
    for k in range(n):
        yield k ** 2

g_1153 = gen_1153(14)
print("Cell 1153 - generators")
print(list(g_1153))
Cell 1153 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 1154 - generators

def gen_1154(n):
    for k in range(n):
        yield k ** 2

g_1154 = gen_1154(15)
print("Cell 1154 - generators")
print(list(g_1154))
Cell 1154 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 1155 - generators

def gen_1155(n):
    for k in range(n):
        yield k ** 2

g_1155 = gen_1155(16)
print("Cell 1155 - generators")
print(list(g_1155))
Cell 1155 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 1156 - generators

def gen_1156(n):
    for k in range(n):
        yield k ** 2

g_1156 = gen_1156(17)
print("Cell 1156 - generators")
print(list(g_1156))
Cell 1156 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 1157 - generators

def gen_1157(n):
    for k in range(n):
        yield k ** 2

g_1157 = gen_1157(18)
print("Cell 1157 - generators")
print(list(g_1157))
Cell 1157 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 1158 - generators

def gen_1158(n):
    for k in range(n):
        yield k ** 2

g_1158 = gen_1158(19)
print("Cell 1158 - generators")
print(list(g_1158))
Cell 1158 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 1159 - generators

def gen_1159(n):
    for k in range(n):
        yield k ** 2

g_1159 = gen_1159(20)
print("Cell 1159 - generators")
print(list(g_1159))
Cell 1159 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 1160 - generators

def gen_1160(n):
    for k in range(n):
        yield k ** 2

g_1160 = gen_1160(21)
print("Cell 1160 - generators")
print(list(g_1160))
Cell 1160 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 1161 - generators

def gen_1161(n):
    for k in range(n):
        yield k ** 2

g_1161 = gen_1161(22)
print("Cell 1161 - generators")
print(list(g_1161))
Cell 1161 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 1162 - generators

def gen_1162(n):
    for k in range(n):
        yield k ** 2

g_1162 = gen_1162(23)
print("Cell 1162 - generators")
print(list(g_1162))
Cell 1162 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 1163 - generators

def gen_1163(n):
    for k in range(n):
        yield k ** 2

g_1163 = gen_1163(24)
print("Cell 1163 - generators")
print(list(g_1163))
Cell 1163 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 1164 - generators

def gen_1164(n):
    for k in range(n):
        yield k ** 2

g_1164 = gen_1164(25)
print("Cell 1164 - generators")
print(list(g_1164))
Cell 1164 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 1165 - generators

def gen_1165(n):
    for k in range(n):
        yield k ** 2

g_1165 = gen_1165(26)
print("Cell 1165 - generators")
print(list(g_1165))
Cell 1165 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 1166 - generators

def gen_1166(n):
    for k in range(n):
        yield k ** 2

g_1166 = gen_1166(27)
print("Cell 1166 - generators")
print(list(g_1166))
Cell 1166 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 1167 - generators

def gen_1167(n):
    for k in range(n):
        yield k ** 2

g_1167 = gen_1167(28)
print("Cell 1167 - generators")
print(list(g_1167))
Cell 1167 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 1168 - generators

def gen_1168(n):
    for k in range(n):
        yield k ** 2

g_1168 = gen_1168(29)
print("Cell 1168 - generators")
print(list(g_1168))
Cell 1168 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 1169 - generators

def gen_1169(n):
    for k in range(n):
        yield k ** 2

g_1169 = gen_1169(30)
print("Cell 1169 - generators")
print(list(g_1169))
Cell 1169 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 1170 - generators

def gen_1170(n):
    for k in range(n):
        yield k ** 2

g_1170 = gen_1170(1)
print("Cell 1170 - generators")
print(list(g_1170))
Cell 1170 - generators
[0]
# Cell 1171 - generators

def gen_1171(n):
    for k in range(n):
        yield k ** 2

g_1171 = gen_1171(2)
print("Cell 1171 - generators")
print(list(g_1171))
Cell 1171 - generators
[0, 1]
# Cell 1172 - generators

def gen_1172(n):
    for k in range(n):
        yield k ** 2

g_1172 = gen_1172(3)
print("Cell 1172 - generators")
print(list(g_1172))
Cell 1172 - generators
[0, 1, 4]
# Cell 1173 - generators

def gen_1173(n):
    for k in range(n):
        yield k ** 2

g_1173 = gen_1173(4)
print("Cell 1173 - generators")
print(list(g_1173))
Cell 1173 - generators
[0, 1, 4, 9]
# Cell 1174 - generators

def gen_1174(n):
    for k in range(n):
        yield k ** 2

g_1174 = gen_1174(5)
print("Cell 1174 - generators")
print(list(g_1174))
Cell 1174 - generators
[0, 1, 4, 9, 16]
# Cell 1175 - generators

def gen_1175(n):
    for k in range(n):
        yield k ** 2

g_1175 = gen_1175(6)
print("Cell 1175 - generators")
print(list(g_1175))
Cell 1175 - generators
[0, 1, 4, 9, 16, 25]
# Cell 1176 - generators

def gen_1176(n):
    for k in range(n):
        yield k ** 2

g_1176 = gen_1176(7)
print("Cell 1176 - generators")
print(list(g_1176))
Cell 1176 - generators
[0, 1, 4, 9, 16, 25, 36]
# Cell 1177 - generators

def gen_1177(n):
    for k in range(n):
        yield k ** 2

g_1177 = gen_1177(8)
print("Cell 1177 - generators")
print(list(g_1177))
Cell 1177 - generators
[0, 1, 4, 9, 16, 25, 36, 49]
# Cell 1178 - generators

def gen_1178(n):
    for k in range(n):
        yield k ** 2

g_1178 = gen_1178(9)
print("Cell 1178 - generators")
print(list(g_1178))
Cell 1178 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64]
# Cell 1179 - generators

def gen_1179(n):
    for k in range(n):
        yield k ** 2

g_1179 = gen_1179(10)
print("Cell 1179 - generators")
print(list(g_1179))
Cell 1179 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
# Cell 1180 - generators

def gen_1180(n):
    for k in range(n):
        yield k ** 2

g_1180 = gen_1180(11)
print("Cell 1180 - generators")
print(list(g_1180))
Cell 1180 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
# Cell 1181 - generators

def gen_1181(n):
    for k in range(n):
        yield k ** 2

g_1181 = gen_1181(12)
print("Cell 1181 - generators")
print(list(g_1181))
Cell 1181 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121]
# Cell 1182 - generators

def gen_1182(n):
    for k in range(n):
        yield k ** 2

g_1182 = gen_1182(13)
print("Cell 1182 - generators")
print(list(g_1182))
Cell 1182 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144]
# Cell 1183 - generators

def gen_1183(n):
    for k in range(n):
        yield k ** 2

g_1183 = gen_1183(14)
print("Cell 1183 - generators")
print(list(g_1183))
Cell 1183 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169]
# Cell 1184 - generators

def gen_1184(n):
    for k in range(n):
        yield k ** 2

g_1184 = gen_1184(15)
print("Cell 1184 - generators")
print(list(g_1184))
Cell 1184 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196]
# Cell 1185 - generators

def gen_1185(n):
    for k in range(n):
        yield k ** 2

g_1185 = gen_1185(16)
print("Cell 1185 - generators")
print(list(g_1185))
Cell 1185 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]
# Cell 1186 - generators

def gen_1186(n):
    for k in range(n):
        yield k ** 2

g_1186 = gen_1186(17)
print("Cell 1186 - generators")
print(list(g_1186))
Cell 1186 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256]
# Cell 1187 - generators

def gen_1187(n):
    for k in range(n):
        yield k ** 2

g_1187 = gen_1187(18)
print("Cell 1187 - generators")
print(list(g_1187))
Cell 1187 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289]
# Cell 1188 - generators

def gen_1188(n):
    for k in range(n):
        yield k ** 2

g_1188 = gen_1188(19)
print("Cell 1188 - generators")
print(list(g_1188))
Cell 1188 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324]
# Cell 1189 - generators

def gen_1189(n):
    for k in range(n):
        yield k ** 2

g_1189 = gen_1189(20)
print("Cell 1189 - generators")
print(list(g_1189))
Cell 1189 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
# Cell 1190 - generators

def gen_1190(n):
    for k in range(n):
        yield k ** 2

g_1190 = gen_1190(21)
print("Cell 1190 - generators")
print(list(g_1190))
Cell 1190 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
# Cell 1191 - generators

def gen_1191(n):
    for k in range(n):
        yield k ** 2

g_1191 = gen_1191(22)
print("Cell 1191 - generators")
print(list(g_1191))
Cell 1191 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441]
# Cell 1192 - generators

def gen_1192(n):
    for k in range(n):
        yield k ** 2

g_1192 = gen_1192(23)
print("Cell 1192 - generators")
print(list(g_1192))
Cell 1192 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484]
# Cell 1193 - generators

def gen_1193(n):
    for k in range(n):
        yield k ** 2

g_1193 = gen_1193(24)
print("Cell 1193 - generators")
print(list(g_1193))
Cell 1193 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529]
# Cell 1194 - generators

def gen_1194(n):
    for k in range(n):
        yield k ** 2

g_1194 = gen_1194(25)
print("Cell 1194 - generators")
print(list(g_1194))
Cell 1194 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576]
# Cell 1195 - generators

def gen_1195(n):
    for k in range(n):
        yield k ** 2

g_1195 = gen_1195(26)
print("Cell 1195 - generators")
print(list(g_1195))
Cell 1195 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625]
# Cell 1196 - generators

def gen_1196(n):
    for k in range(n):
        yield k ** 2

g_1196 = gen_1196(27)
print("Cell 1196 - generators")
print(list(g_1196))
Cell 1196 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676]
# Cell 1197 - generators

def gen_1197(n):
    for k in range(n):
        yield k ** 2

g_1197 = gen_1197(28)
print("Cell 1197 - generators")
print(list(g_1197))
Cell 1197 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729]
# Cell 1198 - generators

def gen_1198(n):
    for k in range(n):
        yield k ** 2

g_1198 = gen_1198(29)
print("Cell 1198 - generators")
print(list(g_1198))
Cell 1198 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784]
# Cell 1199 - generators

def gen_1199(n):
    for k in range(n):
        yield k ** 2

g_1199 = gen_1199(30)
print("Cell 1199 - generators")
print(list(g_1199))
Cell 1199 - generators
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841]
# Cell 1200 - generators

def gen_1200(n):
    for k in range(n):
        yield k ** 2

g_1200 = gen_1200(1)
print("Cell 1200 - generators")
print(list(g_1200))
Cell 1200 - generators
[0]
# Cell 1201 - decorators

def decorator_1201(func):
    def wrapper(*args, **kwargs):
        print("Cell 1201 - Before")
        result = func(*args, **kwargs)
        print("Cell 1201 - After")
        return result
    return wrapper

@decorator_1201
def greet_1201():
    print("Hello from Cell 1201")

greet_1201()
Cell 1201 - Before
Hello from Cell 1201
Cell 1201 - After
# Cell 1202 - decorators

def decorator_1202(func):
    def wrapper(*args, **kwargs):
        print("Cell 1202 - Before")
        result = func(*args, **kwargs)
        print("Cell 1202 - After")
        return result
    return wrapper

@decorator_1202
def greet_1202():
    print("Hello from Cell 1202")

greet_1202()
Cell 1202 - Before
Hello from Cell 1202
Cell 1202 - After
# Cell 1203 - decorators

def decorator_1203(func):
    def wrapper(*args, **kwargs):
        print("Cell 1203 - Before")
        result = func(*args, **kwargs)
        print("Cell 1203 - After")
        return result
    return wrapper

@decorator_1203
def greet_1203():
    print("Hello from Cell 1203")

greet_1203()
Cell 1203 - Before
Hello from Cell 1203
Cell 1203 - After
# Cell 1204 - decorators

def decorator_1204(func):
    def wrapper(*args, **kwargs):
        print("Cell 1204 - Before")
        result = func(*args, **kwargs)
        print("Cell 1204 - After")
        return result
    return wrapper

@decorator_1204
def greet_1204():
    print("Hello from Cell 1204")

greet_1204()
Cell 1204 - Before
Hello from Cell 1204
Cell 1204 - After
# Cell 1205 - decorators

def decorator_1205(func):
    def wrapper(*args, **kwargs):
        print("Cell 1205 - Before")
        result = func(*args, **kwargs)
        print("Cell 1205 - After")
        return result
    return wrapper

@decorator_1205
def greet_1205():
    print("Hello from Cell 1205")

greet_1205()
Cell 1205 - Before
Hello from Cell 1205
Cell 1205 - After
# Cell 1206 - decorators

def decorator_1206(func):
    def wrapper(*args, **kwargs):
        print("Cell 1206 - Before")
        result = func(*args, **kwargs)
        print("Cell 1206 - After")
        return result
    return wrapper

@decorator_1206
def greet_1206():
    print("Hello from Cell 1206")

greet_1206()
Cell 1206 - Before
Hello from Cell 1206
Cell 1206 - After
# Cell 1207 - decorators

def decorator_1207(func):
    def wrapper(*args, **kwargs):
        print("Cell 1207 - Before")
        result = func(*args, **kwargs)
        print("Cell 1207 - After")
        return result
    return wrapper

@decorator_1207
def greet_1207():
    print("Hello from Cell 1207")

greet_1207()
Cell 1207 - Before
Hello from Cell 1207
Cell 1207 - After
# Cell 1208 - decorators

def decorator_1208(func):
    def wrapper(*args, **kwargs):
        print("Cell 1208 - Before")
        result = func(*args, **kwargs)
        print("Cell 1208 - After")
        return result
    return wrapper

@decorator_1208
def greet_1208():
    print("Hello from Cell 1208")

greet_1208()
Cell 1208 - Before
Hello from Cell 1208
Cell 1208 - After
# Cell 1209 - decorators

def decorator_1209(func):
    def wrapper(*args, **kwargs):
        print("Cell 1209 - Before")
        result = func(*args, **kwargs)
        print("Cell 1209 - After")
        return result
    return wrapper

@decorator_1209
def greet_1209():
    print("Hello from Cell 1209")

greet_1209()
Cell 1209 - Before
Hello from Cell 1209
Cell 1209 - After
# Cell 1210 - decorators

def decorator_1210(func):
    def wrapper(*args, **kwargs):
        print("Cell 1210 - Before")
        result = func(*args, **kwargs)
        print("Cell 1210 - After")
        return result
    return wrapper

@decorator_1210
def greet_1210():
    print("Hello from Cell 1210")

greet_1210()
Cell 1210 - Before
Hello from Cell 1210
Cell 1210 - After
# Cell 1211 - decorators

def decorator_1211(func):
    def wrapper(*args, **kwargs):
        print("Cell 1211 - Before")
        result = func(*args, **kwargs)
        print("Cell 1211 - After")
        return result
    return wrapper

@decorator_1211
def greet_1211():
    print("Hello from Cell 1211")

greet_1211()
Cell 1211 - Before
Hello from Cell 1211
Cell 1211 - After
# Cell 1212 - decorators

def decorator_1212(func):
    def wrapper(*args, **kwargs):
        print("Cell 1212 - Before")
        result = func(*args, **kwargs)
        print("Cell 1212 - After")
        return result
    return wrapper

@decorator_1212
def greet_1212():
    print("Hello from Cell 1212")

greet_1212()
Cell 1212 - Before
Hello from Cell 1212
Cell 1212 - After
# Cell 1213 - decorators

def decorator_1213(func):
    def wrapper(*args, **kwargs):
        print("Cell 1213 - Before")
        result = func(*args, **kwargs)
        print("Cell 1213 - After")
        return result
    return wrapper

@decorator_1213
def greet_1213():
    print("Hello from Cell 1213")

greet_1213()
Cell 1213 - Before
Hello from Cell 1213
Cell 1213 - After
# Cell 1214 - decorators

def decorator_1214(func):
    def wrapper(*args, **kwargs):
        print("Cell 1214 - Before")
        result = func(*args, **kwargs)
        print("Cell 1214 - After")
        return result
    return wrapper

@decorator_1214
def greet_1214():
    print("Hello from Cell 1214")

greet_1214()
Cell 1214 - Before
Hello from Cell 1214
Cell 1214 - After
# Cell 1215 - decorators

def decorator_1215(func):
    def wrapper(*args, **kwargs):
        print("Cell 1215 - Before")
        result = func(*args, **kwargs)
        print("Cell 1215 - After")
        return result
    return wrapper

@decorator_1215
def greet_1215():
    print("Hello from Cell 1215")

greet_1215()
Cell 1215 - Before
Hello from Cell 1215
Cell 1215 - After
# Cell 1216 - decorators

def decorator_1216(func):
    def wrapper(*args, **kwargs):
        print("Cell 1216 - Before")
        result = func(*args, **kwargs)
        print("Cell 1216 - After")
        return result
    return wrapper

@decorator_1216
def greet_1216():
    print("Hello from Cell 1216")

greet_1216()
Cell 1216 - Before
Hello from Cell 1216
Cell 1216 - After
# Cell 1217 - decorators

def decorator_1217(func):
    def wrapper(*args, **kwargs):
        print("Cell 1217 - Before")
        result = func(*args, **kwargs)
        print("Cell 1217 - After")
        return result
    return wrapper

@decorator_1217
def greet_1217():
    print("Hello from Cell 1217")

greet_1217()
Cell 1217 - Before
Hello from Cell 1217
Cell 1217 - After
# Cell 1218 - decorators

def decorator_1218(func):
    def wrapper(*args, **kwargs):
        print("Cell 1218 - Before")
        result = func(*args, **kwargs)
        print("Cell 1218 - After")
        return result
    return wrapper

@decorator_1218
def greet_1218():
    print("Hello from Cell 1218")

greet_1218()
Cell 1218 - Before
Hello from Cell 1218
Cell 1218 - After
# Cell 1219 - decorators

def decorator_1219(func):
    def wrapper(*args, **kwargs):
        print("Cell 1219 - Before")
        result = func(*args, **kwargs)
        print("Cell 1219 - After")
        return result
    return wrapper

@decorator_1219
def greet_1219():
    print("Hello from Cell 1219")

greet_1219()
Cell 1219 - Before
Hello from Cell 1219
Cell 1219 - After
# Cell 1220 - decorators

def decorator_1220(func):
    def wrapper(*args, **kwargs):
        print("Cell 1220 - Before")
        result = func(*args, **kwargs)
        print("Cell 1220 - After")
        return result
    return wrapper

@decorator_1220
def greet_1220():
    print("Hello from Cell 1220")

greet_1220()
Cell 1220 - Before
Hello from Cell 1220
Cell 1220 - After
# Cell 1221 - decorators

def decorator_1221(func):
    def wrapper(*args, **kwargs):
        print("Cell 1221 - Before")
        result = func(*args, **kwargs)
        print("Cell 1221 - After")
        return result
    return wrapper

@decorator_1221
def greet_1221():
    print("Hello from Cell 1221")

greet_1221()
Cell 1221 - Before
Hello from Cell 1221
Cell 1221 - After
# Cell 1222 - decorators

def decorator_1222(func):
    def wrapper(*args, **kwargs):
        print("Cell 1222 - Before")
        result = func(*args, **kwargs)
        print("Cell 1222 - After")
        return result
    return wrapper

@decorator_1222
def greet_1222():
    print("Hello from Cell 1222")

greet_1222()
Cell 1222 - Before
Hello from Cell 1222
Cell 1222 - After
# Cell 1223 - decorators

def decorator_1223(func):
    def wrapper(*args, **kwargs):
        print("Cell 1223 - Before")
        result = func(*args, **kwargs)
        print("Cell 1223 - After")
        return result
    return wrapper

@decorator_1223
def greet_1223():
    print("Hello from Cell 1223")

greet_1223()
Cell 1223 - Before
Hello from Cell 1223
Cell 1223 - After
# Cell 1224 - decorators

def decorator_1224(func):
    def wrapper(*args, **kwargs):
        print("Cell 1224 - Before")
        result = func(*args, **kwargs)
        print("Cell 1224 - After")
        return result
    return wrapper

@decorator_1224
def greet_1224():
    print("Hello from Cell 1224")

greet_1224()
Cell 1224 - Before
Hello from Cell 1224
Cell 1224 - After
# Cell 1225 - decorators

def decorator_1225(func):
    def wrapper(*args, **kwargs):
        print("Cell 1225 - Before")
        result = func(*args, **kwargs)
        print("Cell 1225 - After")
        return result
    return wrapper

@decorator_1225
def greet_1225():
    print("Hello from Cell 1225")

greet_1225()
Cell 1225 - Before
Hello from Cell 1225
Cell 1225 - After
# Cell 1226 - decorators

def decorator_1226(func):
    def wrapper(*args, **kwargs):
        print("Cell 1226 - Before")
        result = func(*args, **kwargs)
        print("Cell 1226 - After")
        return result
    return wrapper

@decorator_1226
def greet_1226():
    print("Hello from Cell 1226")

greet_1226()
Cell 1226 - Before
Hello from Cell 1226
Cell 1226 - After
# Cell 1227 - decorators

def decorator_1227(func):
    def wrapper(*args, **kwargs):
        print("Cell 1227 - Before")
        result = func(*args, **kwargs)
        print("Cell 1227 - After")
        return result
    return wrapper

@decorator_1227
def greet_1227():
    print("Hello from Cell 1227")

greet_1227()
Cell 1227 - Before
Hello from Cell 1227
Cell 1227 - After
# Cell 1228 - decorators

def decorator_1228(func):
    def wrapper(*args, **kwargs):
        print("Cell 1228 - Before")
        result = func(*args, **kwargs)
        print("Cell 1228 - After")
        return result
    return wrapper

@decorator_1228
def greet_1228():
    print("Hello from Cell 1228")

greet_1228()
Cell 1228 - Before
Hello from Cell 1228
Cell 1228 - After
# Cell 1229 - decorators

def decorator_1229(func):
    def wrapper(*args, **kwargs):
        print("Cell 1229 - Before")
        result = func(*args, **kwargs)
        print("Cell 1229 - After")
        return result
    return wrapper

@decorator_1229
def greet_1229():
    print("Hello from Cell 1229")

greet_1229()
Cell 1229 - Before
Hello from Cell 1229
Cell 1229 - After
# Cell 1230 - decorators

def decorator_1230(func):
    def wrapper(*args, **kwargs):
        print("Cell 1230 - Before")
        result = func(*args, **kwargs)
        print("Cell 1230 - After")
        return result
    return wrapper

@decorator_1230
def greet_1230():
    print("Hello from Cell 1230")

greet_1230()
Cell 1230 - Before
Hello from Cell 1230
Cell 1230 - After
# Cell 1231 - decorators

def decorator_1231(func):
    def wrapper(*args, **kwargs):
        print("Cell 1231 - Before")
        result = func(*args, **kwargs)
        print("Cell 1231 - After")
        return result
    return wrapper

@decorator_1231
def greet_1231():
    print("Hello from Cell 1231")

greet_1231()
Cell 1231 - Before
Hello from Cell 1231
Cell 1231 - After
# Cell 1232 - decorators

def decorator_1232(func):
    def wrapper(*args, **kwargs):
        print("Cell 1232 - Before")
        result = func(*args, **kwargs)
        print("Cell 1232 - After")
        return result
    return wrapper

@decorator_1232
def greet_1232():
    print("Hello from Cell 1232")

greet_1232()
Cell 1232 - Before
Hello from Cell 1232
Cell 1232 - After
# Cell 1233 - decorators

def decorator_1233(func):
    def wrapper(*args, **kwargs):
        print("Cell 1233 - Before")
        result = func(*args, **kwargs)
        print("Cell 1233 - After")
        return result
    return wrapper

@decorator_1233
def greet_1233():
    print("Hello from Cell 1233")

greet_1233()
Cell 1233 - Before
Hello from Cell 1233
Cell 1233 - After
# Cell 1234 - decorators

def decorator_1234(func):
    def wrapper(*args, **kwargs):
        print("Cell 1234 - Before")
        result = func(*args, **kwargs)
        print("Cell 1234 - After")
        return result
    return wrapper

@decorator_1234
def greet_1234():
    print("Hello from Cell 1234")

greet_1234()
Cell 1234 - Before
Hello from Cell 1234
Cell 1234 - After
# Cell 1235 - decorators

def decorator_1235(func):
    def wrapper(*args, **kwargs):
        print("Cell 1235 - Before")
        result = func(*args, **kwargs)
        print("Cell 1235 - After")
        return result
    return wrapper

@decorator_1235
def greet_1235():
    print("Hello from Cell 1235")

greet_1235()
Cell 1235 - Before
Hello from Cell 1235
Cell 1235 - After
# Cell 1236 - decorators

def decorator_1236(func):
    def wrapper(*args, **kwargs):
        print("Cell 1236 - Before")
        result = func(*args, **kwargs)
        print("Cell 1236 - After")
        return result
    return wrapper

@decorator_1236
def greet_1236():
    print("Hello from Cell 1236")

greet_1236()
Cell 1236 - Before
Hello from Cell 1236
Cell 1236 - After
# Cell 1237 - decorators

def decorator_1237(func):
    def wrapper(*args, **kwargs):
        print("Cell 1237 - Before")
        result = func(*args, **kwargs)
        print("Cell 1237 - After")
        return result
    return wrapper

@decorator_1237
def greet_1237():
    print("Hello from Cell 1237")

greet_1237()
Cell 1237 - Before
Hello from Cell 1237
Cell 1237 - After
# Cell 1238 - decorators

def decorator_1238(func):
    def wrapper(*args, **kwargs):
        print("Cell 1238 - Before")
        result = func(*args, **kwargs)
        print("Cell 1238 - After")
        return result
    return wrapper

@decorator_1238
def greet_1238():
    print("Hello from Cell 1238")

greet_1238()
Cell 1238 - Before
Hello from Cell 1238
Cell 1238 - After
# Cell 1239 - decorators

def decorator_1239(func):
    def wrapper(*args, **kwargs):
        print("Cell 1239 - Before")
        result = func(*args, **kwargs)
        print("Cell 1239 - After")
        return result
    return wrapper

@decorator_1239
def greet_1239():
    print("Hello from Cell 1239")

greet_1239()
Cell 1239 - Before
Hello from Cell 1239
Cell 1239 - After
# Cell 1240 - decorators

def decorator_1240(func):
    def wrapper(*args, **kwargs):
        print("Cell 1240 - Before")
        result = func(*args, **kwargs)
        print("Cell 1240 - After")
        return result
    return wrapper

@decorator_1240
def greet_1240():
    print("Hello from Cell 1240")

greet_1240()
Cell 1240 - Before
Hello from Cell 1240
Cell 1240 - After
# Cell 1241 - decorators

def decorator_1241(func):
    def wrapper(*args, **kwargs):
        print("Cell 1241 - Before")
        result = func(*args, **kwargs)
        print("Cell 1241 - After")
        return result
    return wrapper

@decorator_1241
def greet_1241():
    print("Hello from Cell 1241")

greet_1241()
Cell 1241 - Before
Hello from Cell 1241
Cell 1241 - After
# Cell 1242 - decorators

def decorator_1242(func):
    def wrapper(*args, **kwargs):
        print("Cell 1242 - Before")
        result = func(*args, **kwargs)
        print("Cell 1242 - After")
        return result
    return wrapper

@decorator_1242
def greet_1242():
    print("Hello from Cell 1242")

greet_1242()
Cell 1242 - Before
Hello from Cell 1242
Cell 1242 - After
# Cell 1243 - decorators

def decorator_1243(func):
    def wrapper(*args, **kwargs):
        print("Cell 1243 - Before")
        result = func(*args, **kwargs)
        print("Cell 1243 - After")
        return result
    return wrapper

@decorator_1243
def greet_1243():
    print("Hello from Cell 1243")

greet_1243()
Cell 1243 - Before
Hello from Cell 1243
Cell 1243 - After
# Cell 1244 - decorators

def decorator_1244(func):
    def wrapper(*args, **kwargs):
        print("Cell 1244 - Before")
        result = func(*args, **kwargs)
        print("Cell 1244 - After")
        return result
    return wrapper

@decorator_1244
def greet_1244():
    print("Hello from Cell 1244")

greet_1244()
Cell 1244 - Before
Hello from Cell 1244
Cell 1244 - After
# Cell 1245 - decorators

def decorator_1245(func):
    def wrapper(*args, **kwargs):
        print("Cell 1245 - Before")
        result = func(*args, **kwargs)
        print("Cell 1245 - After")
        return result
    return wrapper

@decorator_1245
def greet_1245():
    print("Hello from Cell 1245")

greet_1245()
Cell 1245 - Before
Hello from Cell 1245
Cell 1245 - After
# Cell 1246 - decorators

def decorator_1246(func):
    def wrapper(*args, **kwargs):
        print("Cell 1246 - Before")
        result = func(*args, **kwargs)
        print("Cell 1246 - After")
        return result
    return wrapper

@decorator_1246
def greet_1246():
    print("Hello from Cell 1246")

greet_1246()
Cell 1246 - Before
Hello from Cell 1246
Cell 1246 - After
# Cell 1247 - decorators

def decorator_1247(func):
    def wrapper(*args, **kwargs):
        print("Cell 1247 - Before")
        result = func(*args, **kwargs)
        print("Cell 1247 - After")
        return result
    return wrapper

@decorator_1247
def greet_1247():
    print("Hello from Cell 1247")

greet_1247()
Cell 1247 - Before
Hello from Cell 1247
Cell 1247 - After
# Cell 1248 - decorators

def decorator_1248(func):
    def wrapper(*args, **kwargs):
        print("Cell 1248 - Before")
        result = func(*args, **kwargs)
        print("Cell 1248 - After")
        return result
    return wrapper

@decorator_1248
def greet_1248():
    print("Hello from Cell 1248")

greet_1248()
Cell 1248 - Before
Hello from Cell 1248
Cell 1248 - After
# Cell 1249 - decorators

def decorator_1249(func):
    def wrapper(*args, **kwargs):
        print("Cell 1249 - Before")
        result = func(*args, **kwargs)
        print("Cell 1249 - After")
        return result
    return wrapper

@decorator_1249
def greet_1249():
    print("Hello from Cell 1249")

greet_1249()
Cell 1249 - Before
Hello from Cell 1249
Cell 1249 - After
# Cell 1250 - decorators

def decorator_1250(func):
    def wrapper(*args, **kwargs):
        print("Cell 1250 - Before")
        result = func(*args, **kwargs)
        print("Cell 1250 - After")
        return result
    return wrapper

@decorator_1250
def greet_1250():
    print("Hello from Cell 1250")

greet_1250()
Cell 1250 - Before
Hello from Cell 1250
Cell 1250 - After
# Cell 1251 - decorators

def decorator_1251(func):
    def wrapper(*args, **kwargs):
        print("Cell 1251 - Before")
        result = func(*args, **kwargs)
        print("Cell 1251 - After")
        return result
    return wrapper

@decorator_1251
def greet_1251():
    print("Hello from Cell 1251")

greet_1251()
Cell 1251 - Before
Hello from Cell 1251
Cell 1251 - After
# Cell 1252 - decorators

def decorator_1252(func):
    def wrapper(*args, **kwargs):
        print("Cell 1252 - Before")
        result = func(*args, **kwargs)
        print("Cell 1252 - After")
        return result
    return wrapper

@decorator_1252
def greet_1252():
    print("Hello from Cell 1252")

greet_1252()
Cell 1252 - Before
Hello from Cell 1252
Cell 1252 - After
# Cell 1253 - decorators

def decorator_1253(func):
    def wrapper(*args, **kwargs):
        print("Cell 1253 - Before")
        result = func(*args, **kwargs)
        print("Cell 1253 - After")
        return result
    return wrapper

@decorator_1253
def greet_1253():
    print("Hello from Cell 1253")

greet_1253()
Cell 1253 - Before
Hello from Cell 1253
Cell 1253 - After
# Cell 1254 - decorators

def decorator_1254(func):
    def wrapper(*args, **kwargs):
        print("Cell 1254 - Before")
        result = func(*args, **kwargs)
        print("Cell 1254 - After")
        return result
    return wrapper

@decorator_1254
def greet_1254():
    print("Hello from Cell 1254")

greet_1254()
Cell 1254 - Before
Hello from Cell 1254
Cell 1254 - After
# Cell 1255 - decorators

def decorator_1255(func):
    def wrapper(*args, **kwargs):
        print("Cell 1255 - Before")
        result = func(*args, **kwargs)
        print("Cell 1255 - After")
        return result
    return wrapper

@decorator_1255
def greet_1255():
    print("Hello from Cell 1255")

greet_1255()
Cell 1255 - Before
Hello from Cell 1255
Cell 1255 - After
# Cell 1256 - decorators

def decorator_1256(func):
    def wrapper(*args, **kwargs):
        print("Cell 1256 - Before")
        result = func(*args, **kwargs)
        print("Cell 1256 - After")
        return result
    return wrapper

@decorator_1256
def greet_1256():
    print("Hello from Cell 1256")

greet_1256()
Cell 1256 - Before
Hello from Cell 1256
Cell 1256 - After
# Cell 1257 - decorators

def decorator_1257(func):
    def wrapper(*args, **kwargs):
        print("Cell 1257 - Before")
        result = func(*args, **kwargs)
        print("Cell 1257 - After")
        return result
    return wrapper

@decorator_1257
def greet_1257():
    print("Hello from Cell 1257")

greet_1257()
Cell 1257 - Before
Hello from Cell 1257
Cell 1257 - After
# Cell 1258 - decorators

def decorator_1258(func):
    def wrapper(*args, **kwargs):
        print("Cell 1258 - Before")
        result = func(*args, **kwargs)
        print("Cell 1258 - After")
        return result
    return wrapper

@decorator_1258
def greet_1258():
    print("Hello from Cell 1258")

greet_1258()
Cell 1258 - Before
Hello from Cell 1258
Cell 1258 - After
# Cell 1259 - decorators

def decorator_1259(func):
    def wrapper(*args, **kwargs):
        print("Cell 1259 - Before")
        result = func(*args, **kwargs)
        print("Cell 1259 - After")
        return result
    return wrapper

@decorator_1259
def greet_1259():
    print("Hello from Cell 1259")

greet_1259()
Cell 1259 - Before
Hello from Cell 1259
Cell 1259 - After
# Cell 1260 - decorators

def decorator_1260(func):
    def wrapper(*args, **kwargs):
        print("Cell 1260 - Before")
        result = func(*args, **kwargs)
        print("Cell 1260 - After")
        return result
    return wrapper

@decorator_1260
def greet_1260():
    print("Hello from Cell 1260")

greet_1260()
Cell 1260 - Before
Hello from Cell 1260
Cell 1260 - After
# Cell 1261 - decorators

def decorator_1261(func):
    def wrapper(*args, **kwargs):
        print("Cell 1261 - Before")
        result = func(*args, **kwargs)
        print("Cell 1261 - After")
        return result
    return wrapper

@decorator_1261
def greet_1261():
    print("Hello from Cell 1261")

greet_1261()
Cell 1261 - Before
Hello from Cell 1261
Cell 1261 - After
# Cell 1262 - decorators

def decorator_1262(func):
    def wrapper(*args, **kwargs):
        print("Cell 1262 - Before")
        result = func(*args, **kwargs)
        print("Cell 1262 - After")
        return result
    return wrapper

@decorator_1262
def greet_1262():
    print("Hello from Cell 1262")

greet_1262()
Cell 1262 - Before
Hello from Cell 1262
Cell 1262 - After
# Cell 1263 - decorators

def decorator_1263(func):
    def wrapper(*args, **kwargs):
        print("Cell 1263 - Before")
        result = func(*args, **kwargs)
        print("Cell 1263 - After")
        return result
    return wrapper

@decorator_1263
def greet_1263():
    print("Hello from Cell 1263")

greet_1263()
Cell 1263 - Before
Hello from Cell 1263
Cell 1263 - After
# Cell 1264 - decorators

def decorator_1264(func):
    def wrapper(*args, **kwargs):
        print("Cell 1264 - Before")
        result = func(*args, **kwargs)
        print("Cell 1264 - After")
        return result
    return wrapper

@decorator_1264
def greet_1264():
    print("Hello from Cell 1264")

greet_1264()
Cell 1264 - Before
Hello from Cell 1264
Cell 1264 - After
# Cell 1265 - decorators

def decorator_1265(func):
    def wrapper(*args, **kwargs):
        print("Cell 1265 - Before")
        result = func(*args, **kwargs)
        print("Cell 1265 - After")
        return result
    return wrapper

@decorator_1265
def greet_1265():
    print("Hello from Cell 1265")

greet_1265()
Cell 1265 - Before
Hello from Cell 1265
Cell 1265 - After
# Cell 1266 - decorators

def decorator_1266(func):
    def wrapper(*args, **kwargs):
        print("Cell 1266 - Before")
        result = func(*args, **kwargs)
        print("Cell 1266 - After")
        return result
    return wrapper

@decorator_1266
def greet_1266():
    print("Hello from Cell 1266")

greet_1266()
Cell 1266 - Before
Hello from Cell 1266
Cell 1266 - After
# Cell 1267 - decorators

def decorator_1267(func):
    def wrapper(*args, **kwargs):
        print("Cell 1267 - Before")
        result = func(*args, **kwargs)
        print("Cell 1267 - After")
        return result
    return wrapper

@decorator_1267
def greet_1267():
    print("Hello from Cell 1267")

greet_1267()
Cell 1267 - Before
Hello from Cell 1267
Cell 1267 - After
# Cell 1268 - decorators

def decorator_1268(func):
    def wrapper(*args, **kwargs):
        print("Cell 1268 - Before")
        result = func(*args, **kwargs)
        print("Cell 1268 - After")
        return result
    return wrapper

@decorator_1268
def greet_1268():
    print("Hello from Cell 1268")

greet_1268()
Cell 1268 - Before
Hello from Cell 1268
Cell 1268 - After
# Cell 1269 - decorators

def decorator_1269(func):
    def wrapper(*args, **kwargs):
        print("Cell 1269 - Before")
        result = func(*args, **kwargs)
        print("Cell 1269 - After")
        return result
    return wrapper

@decorator_1269
def greet_1269():
    print("Hello from Cell 1269")

greet_1269()
Cell 1269 - Before
Hello from Cell 1269
Cell 1269 - After
# Cell 1270 - decorators

def decorator_1270(func):
    def wrapper(*args, **kwargs):
        print("Cell 1270 - Before")
        result = func(*args, **kwargs)
        print("Cell 1270 - After")
        return result
    return wrapper

@decorator_1270
def greet_1270():
    print("Hello from Cell 1270")

greet_1270()
Cell 1270 - Before
Hello from Cell 1270
Cell 1270 - After
# Cell 1271 - decorators

def decorator_1271(func):
    def wrapper(*args, **kwargs):
        print("Cell 1271 - Before")
        result = func(*args, **kwargs)
        print("Cell 1271 - After")
        return result
    return wrapper

@decorator_1271
def greet_1271():
    print("Hello from Cell 1271")

greet_1271()
Cell 1271 - Before
Hello from Cell 1271
Cell 1271 - After
# Cell 1272 - decorators

def decorator_1272(func):
    def wrapper(*args, **kwargs):
        print("Cell 1272 - Before")
        result = func(*args, **kwargs)
        print("Cell 1272 - After")
        return result
    return wrapper

@decorator_1272
def greet_1272():
    print("Hello from Cell 1272")

greet_1272()
Cell 1272 - Before
Hello from Cell 1272
Cell 1272 - After
# Cell 1273 - decorators

def decorator_1273(func):
    def wrapper(*args, **kwargs):
        print("Cell 1273 - Before")
        result = func(*args, **kwargs)
        print("Cell 1273 - After")
        return result
    return wrapper

@decorator_1273
def greet_1273():
    print("Hello from Cell 1273")

greet_1273()
Cell 1273 - Before
Hello from Cell 1273
Cell 1273 - After
# Cell 1274 - decorators

def decorator_1274(func):
    def wrapper(*args, **kwargs):
        print("Cell 1274 - Before")
        result = func(*args, **kwargs)
        print("Cell 1274 - After")
        return result
    return wrapper

@decorator_1274
def greet_1274():
    print("Hello from Cell 1274")

greet_1274()
Cell 1274 - Before
Hello from Cell 1274
Cell 1274 - After
# Cell 1275 - decorators

def decorator_1275(func):
    def wrapper(*args, **kwargs):
        print("Cell 1275 - Before")
        result = func(*args, **kwargs)
        print("Cell 1275 - After")
        return result
    return wrapper

@decorator_1275
def greet_1275():
    print("Hello from Cell 1275")

greet_1275()
Cell 1275 - Before
Hello from Cell 1275
Cell 1275 - After
# Cell 1276 - decorators

def decorator_1276(func):
    def wrapper(*args, **kwargs):
        print("Cell 1276 - Before")
        result = func(*args, **kwargs)
        print("Cell 1276 - After")
        return result
    return wrapper

@decorator_1276
def greet_1276():
    print("Hello from Cell 1276")

greet_1276()
Cell 1276 - Before
Hello from Cell 1276
Cell 1276 - After
# Cell 1277 - decorators

def decorator_1277(func):
    def wrapper(*args, **kwargs):
        print("Cell 1277 - Before")
        result = func(*args, **kwargs)
        print("Cell 1277 - After")
        return result
    return wrapper

@decorator_1277
def greet_1277():
    print("Hello from Cell 1277")

greet_1277()
Cell 1277 - Before
Hello from Cell 1277
Cell 1277 - After
# Cell 1278 - decorators

def decorator_1278(func):
    def wrapper(*args, **kwargs):
        print("Cell 1278 - Before")
        result = func(*args, **kwargs)
        print("Cell 1278 - After")
        return result
    return wrapper

@decorator_1278
def greet_1278():
    print("Hello from Cell 1278")

greet_1278()
Cell 1278 - Before
Hello from Cell 1278
Cell 1278 - After
# Cell 1279 - decorators

def decorator_1279(func):
    def wrapper(*args, **kwargs):
        print("Cell 1279 - Before")
        result = func(*args, **kwargs)
        print("Cell 1279 - After")
        return result
    return wrapper

@decorator_1279
def greet_1279():
    print("Hello from Cell 1279")

greet_1279()
Cell 1279 - Before
Hello from Cell 1279
Cell 1279 - After
# Cell 1280 - decorators

def decorator_1280(func):
    def wrapper(*args, **kwargs):
        print("Cell 1280 - Before")
        result = func(*args, **kwargs)
        print("Cell 1280 - After")
        return result
    return wrapper

@decorator_1280
def greet_1280():
    print("Hello from Cell 1280")

greet_1280()
Cell 1280 - Before
Hello from Cell 1280
Cell 1280 - After
# Cell 1281 - decorators

def decorator_1281(func):
    def wrapper(*args, **kwargs):
        print("Cell 1281 - Before")
        result = func(*args, **kwargs)
        print("Cell 1281 - After")
        return result
    return wrapper

@decorator_1281
def greet_1281():
    print("Hello from Cell 1281")

greet_1281()
Cell 1281 - Before
Hello from Cell 1281
Cell 1281 - After
# Cell 1282 - decorators

def decorator_1282(func):
    def wrapper(*args, **kwargs):
        print("Cell 1282 - Before")
        result = func(*args, **kwargs)
        print("Cell 1282 - After")
        return result
    return wrapper

@decorator_1282
def greet_1282():
    print("Hello from Cell 1282")

greet_1282()
Cell 1282 - Before
Hello from Cell 1282
Cell 1282 - After
# Cell 1283 - decorators

def decorator_1283(func):
    def wrapper(*args, **kwargs):
        print("Cell 1283 - Before")
        result = func(*args, **kwargs)
        print("Cell 1283 - After")
        return result
    return wrapper

@decorator_1283
def greet_1283():
    print("Hello from Cell 1283")

greet_1283()
Cell 1283 - Before
Hello from Cell 1283
Cell 1283 - After
# Cell 1284 - decorators

def decorator_1284(func):
    def wrapper(*args, **kwargs):
        print("Cell 1284 - Before")
        result = func(*args, **kwargs)
        print("Cell 1284 - After")
        return result
    return wrapper

@decorator_1284
def greet_1284():
    print("Hello from Cell 1284")

greet_1284()
Cell 1284 - Before
Hello from Cell 1284
Cell 1284 - After
# Cell 1285 - decorators

def decorator_1285(func):
    def wrapper(*args, **kwargs):
        print("Cell 1285 - Before")
        result = func(*args, **kwargs)
        print("Cell 1285 - After")
        return result
    return wrapper

@decorator_1285
def greet_1285():
    print("Hello from Cell 1285")

greet_1285()
Cell 1285 - Before
Hello from Cell 1285
Cell 1285 - After
# Cell 1286 - decorators

def decorator_1286(func):
    def wrapper(*args, **kwargs):
        print("Cell 1286 - Before")
        result = func(*args, **kwargs)
        print("Cell 1286 - After")
        return result
    return wrapper

@decorator_1286
def greet_1286():
    print("Hello from Cell 1286")

greet_1286()
Cell 1286 - Before
Hello from Cell 1286
Cell 1286 - After
# Cell 1287 - decorators

def decorator_1287(func):
    def wrapper(*args, **kwargs):
        print("Cell 1287 - Before")
        result = func(*args, **kwargs)
        print("Cell 1287 - After")
        return result
    return wrapper

@decorator_1287
def greet_1287():
    print("Hello from Cell 1287")

greet_1287()
Cell 1287 - Before
Hello from Cell 1287
Cell 1287 - After
# Cell 1288 - decorators

def decorator_1288(func):
    def wrapper(*args, **kwargs):
        print("Cell 1288 - Before")
        result = func(*args, **kwargs)
        print("Cell 1288 - After")
        return result
    return wrapper

@decorator_1288
def greet_1288():
    print("Hello from Cell 1288")

greet_1288()
Cell 1288 - Before
Hello from Cell 1288
Cell 1288 - After
# Cell 1289 - decorators

def decorator_1289(func):
    def wrapper(*args, **kwargs):
        print("Cell 1289 - Before")
        result = func(*args, **kwargs)
        print("Cell 1289 - After")
        return result
    return wrapper

@decorator_1289
def greet_1289():
    print("Hello from Cell 1289")

greet_1289()
Cell 1289 - Before
Hello from Cell 1289
Cell 1289 - After
# Cell 1290 - decorators

def decorator_1290(func):
    def wrapper(*args, **kwargs):
        print("Cell 1290 - Before")
        result = func(*args, **kwargs)
        print("Cell 1290 - After")
        return result
    return wrapper

@decorator_1290
def greet_1290():
    print("Hello from Cell 1290")

greet_1290()
Cell 1290 - Before
Hello from Cell 1290
Cell 1290 - After
# Cell 1291 - decorators

def decorator_1291(func):
    def wrapper(*args, **kwargs):
        print("Cell 1291 - Before")
        result = func(*args, **kwargs)
        print("Cell 1291 - After")
        return result
    return wrapper

@decorator_1291
def greet_1291():
    print("Hello from Cell 1291")

greet_1291()
Cell 1291 - Before
Hello from Cell 1291
Cell 1291 - After
# Cell 1292 - decorators

def decorator_1292(func):
    def wrapper(*args, **kwargs):
        print("Cell 1292 - Before")
        result = func(*args, **kwargs)
        print("Cell 1292 - After")
        return result
    return wrapper

@decorator_1292
def greet_1292():
    print("Hello from Cell 1292")

greet_1292()
Cell 1292 - Before
Hello from Cell 1292
Cell 1292 - After
# Cell 1293 - decorators

def decorator_1293(func):
    def wrapper(*args, **kwargs):
        print("Cell 1293 - Before")
        result = func(*args, **kwargs)
        print("Cell 1293 - After")
        return result
    return wrapper

@decorator_1293
def greet_1293():
    print("Hello from Cell 1293")

greet_1293()
Cell 1293 - Before
Hello from Cell 1293
Cell 1293 - After
# Cell 1294 - decorators

def decorator_1294(func):
    def wrapper(*args, **kwargs):
        print("Cell 1294 - Before")
        result = func(*args, **kwargs)
        print("Cell 1294 - After")
        return result
    return wrapper

@decorator_1294
def greet_1294():
    print("Hello from Cell 1294")

greet_1294()
Cell 1294 - Before
Hello from Cell 1294
Cell 1294 - After
# Cell 1295 - decorators

def decorator_1295(func):
    def wrapper(*args, **kwargs):
        print("Cell 1295 - Before")
        result = func(*args, **kwargs)
        print("Cell 1295 - After")
        return result
    return wrapper

@decorator_1295
def greet_1295():
    print("Hello from Cell 1295")

greet_1295()
Cell 1295 - Before
Hello from Cell 1295
Cell 1295 - After
# Cell 1296 - decorators

def decorator_1296(func):
    def wrapper(*args, **kwargs):
        print("Cell 1296 - Before")
        result = func(*args, **kwargs)
        print("Cell 1296 - After")
        return result
    return wrapper

@decorator_1296
def greet_1296():
    print("Hello from Cell 1296")

greet_1296()
Cell 1296 - Before
Hello from Cell 1296
Cell 1296 - After
# Cell 1297 - decorators

def decorator_1297(func):
    def wrapper(*args, **kwargs):
        print("Cell 1297 - Before")
        result = func(*args, **kwargs)
        print("Cell 1297 - After")
        return result
    return wrapper

@decorator_1297
def greet_1297():
    print("Hello from Cell 1297")

greet_1297()
Cell 1297 - Before
Hello from Cell 1297
Cell 1297 - After
# Cell 1298 - decorators

def decorator_1298(func):
    def wrapper(*args, **kwargs):
        print("Cell 1298 - Before")
        result = func(*args, **kwargs)
        print("Cell 1298 - After")
        return result
    return wrapper

@decorator_1298
def greet_1298():
    print("Hello from Cell 1298")

greet_1298()
Cell 1298 - Before
Hello from Cell 1298
Cell 1298 - After
# Cell 1299 - decorators

def decorator_1299(func):
    def wrapper(*args, **kwargs):
        print("Cell 1299 - Before")
        result = func(*args, **kwargs)
        print("Cell 1299 - After")
        return result
    return wrapper

@decorator_1299
def greet_1299():
    print("Hello from Cell 1299")

greet_1299()
Cell 1299 - Before
Hello from Cell 1299
Cell 1299 - After
# Cell 1300 - decorators

def decorator_1300(func):
    def wrapper(*args, **kwargs):
        print("Cell 1300 - Before")
        result = func(*args, **kwargs)
        print("Cell 1300 - After")
        return result
    return wrapper

@decorator_1300
def greet_1300():
    print("Hello from Cell 1300")

greet_1300()
Cell 1300 - Before
Hello from Cell 1300
Cell 1300 - After
# Cell 1301 - decorators

def decorator_1301(func):
    def wrapper(*args, **kwargs):
        print("Cell 1301 - Before")
        result = func(*args, **kwargs)
        print("Cell 1301 - After")
        return result
    return wrapper

@decorator_1301
def greet_1301():
    print("Hello from Cell 1301")

greet_1301()
Cell 1301 - Before
Hello from Cell 1301
Cell 1301 - After
# Cell 1302 - decorators

def decorator_1302(func):
    def wrapper(*args, **kwargs):
        print("Cell 1302 - Before")
        result = func(*args, **kwargs)
        print("Cell 1302 - After")
        return result
    return wrapper

@decorator_1302
def greet_1302():
    print("Hello from Cell 1302")

greet_1302()
Cell 1302 - Before
Hello from Cell 1302
Cell 1302 - After
# Cell 1303 - decorators

def decorator_1303(func):
    def wrapper(*args, **kwargs):
        print("Cell 1303 - Before")
        result = func(*args, **kwargs)
        print("Cell 1303 - After")
        return result
    return wrapper

@decorator_1303
def greet_1303():
    print("Hello from Cell 1303")

greet_1303()
Cell 1303 - Before
Hello from Cell 1303
Cell 1303 - After
# Cell 1304 - decorators

def decorator_1304(func):
    def wrapper(*args, **kwargs):
        print("Cell 1304 - Before")
        result = func(*args, **kwargs)
        print("Cell 1304 - After")
        return result
    return wrapper

@decorator_1304
def greet_1304():
    print("Hello from Cell 1304")

greet_1304()
Cell 1304 - Before
Hello from Cell 1304
Cell 1304 - After
# Cell 1305 - decorators

def decorator_1305(func):
    def wrapper(*args, **kwargs):
        print("Cell 1305 - Before")
        result = func(*args, **kwargs)
        print("Cell 1305 - After")
        return result
    return wrapper

@decorator_1305
def greet_1305():
    print("Hello from Cell 1305")

greet_1305()
Cell 1305 - Before
Hello from Cell 1305
Cell 1305 - After
# Cell 1306 - decorators

def decorator_1306(func):
    def wrapper(*args, **kwargs):
        print("Cell 1306 - Before")
        result = func(*args, **kwargs)
        print("Cell 1306 - After")
        return result
    return wrapper

@decorator_1306
def greet_1306():
    print("Hello from Cell 1306")

greet_1306()
Cell 1306 - Before
Hello from Cell 1306
Cell 1306 - After
# Cell 1307 - decorators

def decorator_1307(func):
    def wrapper(*args, **kwargs):
        print("Cell 1307 - Before")
        result = func(*args, **kwargs)
        print("Cell 1307 - After")
        return result
    return wrapper

@decorator_1307
def greet_1307():
    print("Hello from Cell 1307")

greet_1307()
Cell 1307 - Before
Hello from Cell 1307
Cell 1307 - After
# Cell 1308 - decorators

def decorator_1308(func):
    def wrapper(*args, **kwargs):
        print("Cell 1308 - Before")
        result = func(*args, **kwargs)
        print("Cell 1308 - After")
        return result
    return wrapper

@decorator_1308
def greet_1308():
    print("Hello from Cell 1308")

greet_1308()
Cell 1308 - Before
Hello from Cell 1308
Cell 1308 - After
# Cell 1309 - decorators

def decorator_1309(func):
    def wrapper(*args, **kwargs):
        print("Cell 1309 - Before")
        result = func(*args, **kwargs)
        print("Cell 1309 - After")
        return result
    return wrapper

@decorator_1309
def greet_1309():
    print("Hello from Cell 1309")

greet_1309()
Cell 1309 - Before
Hello from Cell 1309
Cell 1309 - After
# Cell 1310 - decorators

def decorator_1310(func):
    def wrapper(*args, **kwargs):
        print("Cell 1310 - Before")
        result = func(*args, **kwargs)
        print("Cell 1310 - After")
        return result
    return wrapper

@decorator_1310
def greet_1310():
    print("Hello from Cell 1310")

greet_1310()
Cell 1310 - Before
Hello from Cell 1310
Cell 1310 - After
# Cell 1311 - decorators

def decorator_1311(func):
    def wrapper(*args, **kwargs):
        print("Cell 1311 - Before")
        result = func(*args, **kwargs)
        print("Cell 1311 - After")
        return result
    return wrapper

@decorator_1311
def greet_1311():
    print("Hello from Cell 1311")

greet_1311()
Cell 1311 - Before
Hello from Cell 1311
Cell 1311 - After
# Cell 1312 - decorators

def decorator_1312(func):
    def wrapper(*args, **kwargs):
        print("Cell 1312 - Before")
        result = func(*args, **kwargs)
        print("Cell 1312 - After")
        return result
    return wrapper

@decorator_1312
def greet_1312():
    print("Hello from Cell 1312")

greet_1312()
Cell 1312 - Before
Hello from Cell 1312
Cell 1312 - After
# Cell 1313 - decorators

def decorator_1313(func):
    def wrapper(*args, **kwargs):
        print("Cell 1313 - Before")
        result = func(*args, **kwargs)
        print("Cell 1313 - After")
        return result
    return wrapper

@decorator_1313
def greet_1313():
    print("Hello from Cell 1313")

greet_1313()
Cell 1313 - Before
Hello from Cell 1313
Cell 1313 - After
# Cell 1314 - decorators

def decorator_1314(func):
    def wrapper(*args, **kwargs):
        print("Cell 1314 - Before")
        result = func(*args, **kwargs)
        print("Cell 1314 - After")
        return result
    return wrapper

@decorator_1314
def greet_1314():
    print("Hello from Cell 1314")

greet_1314()
Cell 1314 - Before
Hello from Cell 1314
Cell 1314 - After
# Cell 1315 - decorators

def decorator_1315(func):
    def wrapper(*args, **kwargs):
        print("Cell 1315 - Before")
        result = func(*args, **kwargs)
        print("Cell 1315 - After")
        return result
    return wrapper

@decorator_1315
def greet_1315():
    print("Hello from Cell 1315")

greet_1315()
Cell 1315 - Before
Hello from Cell 1315
Cell 1315 - After
# Cell 1316 - decorators

def decorator_1316(func):
    def wrapper(*args, **kwargs):
        print("Cell 1316 - Before")
        result = func(*args, **kwargs)
        print("Cell 1316 - After")
        return result
    return wrapper

@decorator_1316
def greet_1316():
    print("Hello from Cell 1316")

greet_1316()
Cell 1316 - Before
Hello from Cell 1316
Cell 1316 - After
# Cell 1317 - decorators

def decorator_1317(func):
    def wrapper(*args, **kwargs):
        print("Cell 1317 - Before")
        result = func(*args, **kwargs)
        print("Cell 1317 - After")
        return result
    return wrapper

@decorator_1317
def greet_1317():
    print("Hello from Cell 1317")

greet_1317()
Cell 1317 - Before
Hello from Cell 1317
Cell 1317 - After
# Cell 1318 - decorators

def decorator_1318(func):
    def wrapper(*args, **kwargs):
        print("Cell 1318 - Before")
        result = func(*args, **kwargs)
        print("Cell 1318 - After")
        return result
    return wrapper

@decorator_1318
def greet_1318():
    print("Hello from Cell 1318")

greet_1318()
Cell 1318 - Before
Hello from Cell 1318
Cell 1318 - After
# Cell 1319 - decorators

def decorator_1319(func):
    def wrapper(*args, **kwargs):
        print("Cell 1319 - Before")
        result = func(*args, **kwargs)
        print("Cell 1319 - After")
        return result
    return wrapper

@decorator_1319
def greet_1319():
    print("Hello from Cell 1319")

greet_1319()
Cell 1319 - Before
Hello from Cell 1319
Cell 1319 - After
# Cell 1320 - decorators

def decorator_1320(func):
    def wrapper(*args, **kwargs):
        print("Cell 1320 - Before")
        result = func(*args, **kwargs)
        print("Cell 1320 - After")
        return result
    return wrapper

@decorator_1320
def greet_1320():
    print("Hello from Cell 1320")

greet_1320()
Cell 1320 - Before
Hello from Cell 1320
Cell 1320 - After
# Cell 1321 - decorators

def decorator_1321(func):
    def wrapper(*args, **kwargs):
        print("Cell 1321 - Before")
        result = func(*args, **kwargs)
        print("Cell 1321 - After")
        return result
    return wrapper

@decorator_1321
def greet_1321():
    print("Hello from Cell 1321")

greet_1321()
Cell 1321 - Before
Hello from Cell 1321
Cell 1321 - After
# Cell 1322 - decorators

def decorator_1322(func):
    def wrapper(*args, **kwargs):
        print("Cell 1322 - Before")
        result = func(*args, **kwargs)
        print("Cell 1322 - After")
        return result
    return wrapper

@decorator_1322
def greet_1322():
    print("Hello from Cell 1322")

greet_1322()
Cell 1322 - Before
Hello from Cell 1322
Cell 1322 - After
# Cell 1323 - decorators

def decorator_1323(func):
    def wrapper(*args, **kwargs):
        print("Cell 1323 - Before")
        result = func(*args, **kwargs)
        print("Cell 1323 - After")
        return result
    return wrapper

@decorator_1323
def greet_1323():
    print("Hello from Cell 1323")

greet_1323()
Cell 1323 - Before
Hello from Cell 1323
Cell 1323 - After
# Cell 1324 - decorators

def decorator_1324(func):
    def wrapper(*args, **kwargs):
        print("Cell 1324 - Before")
        result = func(*args, **kwargs)
        print("Cell 1324 - After")
        return result
    return wrapper

@decorator_1324
def greet_1324():
    print("Hello from Cell 1324")

greet_1324()
Cell 1324 - Before
Hello from Cell 1324
Cell 1324 - After
# Cell 1325 - decorators

def decorator_1325(func):
    def wrapper(*args, **kwargs):
        print("Cell 1325 - Before")
        result = func(*args, **kwargs)
        print("Cell 1325 - After")
        return result
    return wrapper

@decorator_1325
def greet_1325():
    print("Hello from Cell 1325")

greet_1325()
Cell 1325 - Before
Hello from Cell 1325
Cell 1325 - After
# Cell 1326 - decorators

def decorator_1326(func):
    def wrapper(*args, **kwargs):
        print("Cell 1326 - Before")
        result = func(*args, **kwargs)
        print("Cell 1326 - After")
        return result
    return wrapper

@decorator_1326
def greet_1326():
    print("Hello from Cell 1326")

greet_1326()
Cell 1326 - Before
Hello from Cell 1326
Cell 1326 - After
# Cell 1327 - decorators

def decorator_1327(func):
    def wrapper(*args, **kwargs):
        print("Cell 1327 - Before")
        result = func(*args, **kwargs)
        print("Cell 1327 - After")
        return result
    return wrapper

@decorator_1327
def greet_1327():
    print("Hello from Cell 1327")

greet_1327()
Cell 1327 - Before
Hello from Cell 1327
Cell 1327 - After
# Cell 1328 - decorators

def decorator_1328(func):
    def wrapper(*args, **kwargs):
        print("Cell 1328 - Before")
        result = func(*args, **kwargs)
        print("Cell 1328 - After")
        return result
    return wrapper

@decorator_1328
def greet_1328():
    print("Hello from Cell 1328")

greet_1328()
Cell 1328 - Before
Hello from Cell 1328
Cell 1328 - After
# Cell 1329 - decorators

def decorator_1329(func):
    def wrapper(*args, **kwargs):
        print("Cell 1329 - Before")
        result = func(*args, **kwargs)
        print("Cell 1329 - After")
        return result
    return wrapper

@decorator_1329
def greet_1329():
    print("Hello from Cell 1329")

greet_1329()
Cell 1329 - Before
Hello from Cell 1329
Cell 1329 - After
# Cell 1330 - decorators

def decorator_1330(func):
    def wrapper(*args, **kwargs):
        print("Cell 1330 - Before")
        result = func(*args, **kwargs)
        print("Cell 1330 - After")
        return result
    return wrapper

@decorator_1330
def greet_1330():
    print("Hello from Cell 1330")

greet_1330()
Cell 1330 - Before
Hello from Cell 1330
Cell 1330 - After
# Cell 1331 - decorators

def decorator_1331(func):
    def wrapper(*args, **kwargs):
        print("Cell 1331 - Before")
        result = func(*args, **kwargs)
        print("Cell 1331 - After")
        return result
    return wrapper

@decorator_1331
def greet_1331():
    print("Hello from Cell 1331")

greet_1331()
Cell 1331 - Before
Hello from Cell 1331
Cell 1331 - After
# Cell 1332 - decorators

def decorator_1332(func):
    def wrapper(*args, **kwargs):
        print("Cell 1332 - Before")
        result = func(*args, **kwargs)
        print("Cell 1332 - After")
        return result
    return wrapper

@decorator_1332
def greet_1332():
    print("Hello from Cell 1332")

greet_1332()
Cell 1332 - Before
Hello from Cell 1332
Cell 1332 - After
# Cell 1333 - decorators

def decorator_1333(func):
    def wrapper(*args, **kwargs):
        print("Cell 1333 - Before")
        result = func(*args, **kwargs)
        print("Cell 1333 - After")
        return result
    return wrapper

@decorator_1333
def greet_1333():
    print("Hello from Cell 1333")

greet_1333()
Cell 1333 - Before
Hello from Cell 1333
Cell 1333 - After
# Cell 1334 - decorators

def decorator_1334(func):
    def wrapper(*args, **kwargs):
        print("Cell 1334 - Before")
        result = func(*args, **kwargs)
        print("Cell 1334 - After")
        return result
    return wrapper

@decorator_1334
def greet_1334():
    print("Hello from Cell 1334")

greet_1334()
Cell 1334 - Before
Hello from Cell 1334
Cell 1334 - After
# Cell 1335 - decorators

def decorator_1335(func):
    def wrapper(*args, **kwargs):
        print("Cell 1335 - Before")
        result = func(*args, **kwargs)
        print("Cell 1335 - After")
        return result
    return wrapper

@decorator_1335
def greet_1335():
    print("Hello from Cell 1335")

greet_1335()
Cell 1335 - Before
Hello from Cell 1335
Cell 1335 - After
# Cell 1336 - decorators

def decorator_1336(func):
    def wrapper(*args, **kwargs):
        print("Cell 1336 - Before")
        result = func(*args, **kwargs)
        print("Cell 1336 - After")
        return result
    return wrapper

@decorator_1336
def greet_1336():
    print("Hello from Cell 1336")

greet_1336()
Cell 1336 - Before
Hello from Cell 1336
Cell 1336 - After
# Cell 1337 - decorators

def decorator_1337(func):
    def wrapper(*args, **kwargs):
        print("Cell 1337 - Before")
        result = func(*args, **kwargs)
        print("Cell 1337 - After")
        return result
    return wrapper

@decorator_1337
def greet_1337():
    print("Hello from Cell 1337")

greet_1337()
Cell 1337 - Before
Hello from Cell 1337
Cell 1337 - After
# Cell 1338 - decorators

def decorator_1338(func):
    def wrapper(*args, **kwargs):
        print("Cell 1338 - Before")
        result = func(*args, **kwargs)
        print("Cell 1338 - After")
        return result
    return wrapper

@decorator_1338
def greet_1338():
    print("Hello from Cell 1338")

greet_1338()
Cell 1338 - Before
Hello from Cell 1338
Cell 1338 - After
# Cell 1339 - decorators

def decorator_1339(func):
    def wrapper(*args, **kwargs):
        print("Cell 1339 - Before")
        result = func(*args, **kwargs)
        print("Cell 1339 - After")
        return result
    return wrapper

@decorator_1339
def greet_1339():
    print("Hello from Cell 1339")

greet_1339()
Cell 1339 - Before
Hello from Cell 1339
Cell 1339 - After
# Cell 1340 - decorators

def decorator_1340(func):
    def wrapper(*args, **kwargs):
        print("Cell 1340 - Before")
        result = func(*args, **kwargs)
        print("Cell 1340 - After")
        return result
    return wrapper

@decorator_1340
def greet_1340():
    print("Hello from Cell 1340")

greet_1340()
Cell 1340 - Before
Hello from Cell 1340
Cell 1340 - After
# Cell 1341 - decorators

def decorator_1341(func):
    def wrapper(*args, **kwargs):
        print("Cell 1341 - Before")
        result = func(*args, **kwargs)
        print("Cell 1341 - After")
        return result
    return wrapper

@decorator_1341
def greet_1341():
    print("Hello from Cell 1341")

greet_1341()
Cell 1341 - Before
Hello from Cell 1341
Cell 1341 - After
# Cell 1342 - decorators

def decorator_1342(func):
    def wrapper(*args, **kwargs):
        print("Cell 1342 - Before")
        result = func(*args, **kwargs)
        print("Cell 1342 - After")
        return result
    return wrapper

@decorator_1342
def greet_1342():
    print("Hello from Cell 1342")

greet_1342()
Cell 1342 - Before
Hello from Cell 1342
Cell 1342 - After
# Cell 1343 - decorators

def decorator_1343(func):
    def wrapper(*args, **kwargs):
        print("Cell 1343 - Before")
        result = func(*args, **kwargs)
        print("Cell 1343 - After")
        return result
    return wrapper

@decorator_1343
def greet_1343():
    print("Hello from Cell 1343")

greet_1343()
Cell 1343 - Before
Hello from Cell 1343
Cell 1343 - After
# Cell 1344 - decorators

def decorator_1344(func):
    def wrapper(*args, **kwargs):
        print("Cell 1344 - Before")
        result = func(*args, **kwargs)
        print("Cell 1344 - After")
        return result
    return wrapper

@decorator_1344
def greet_1344():
    print("Hello from Cell 1344")

greet_1344()
Cell 1344 - Before
Hello from Cell 1344
Cell 1344 - After
# Cell 1345 - decorators

def decorator_1345(func):
    def wrapper(*args, **kwargs):
        print("Cell 1345 - Before")
        result = func(*args, **kwargs)
        print("Cell 1345 - After")
        return result
    return wrapper

@decorator_1345
def greet_1345():
    print("Hello from Cell 1345")

greet_1345()
Cell 1345 - Before
Hello from Cell 1345
Cell 1345 - After
# Cell 1346 - decorators

def decorator_1346(func):
    def wrapper(*args, **kwargs):
        print("Cell 1346 - Before")
        result = func(*args, **kwargs)
        print("Cell 1346 - After")
        return result
    return wrapper

@decorator_1346
def greet_1346():
    print("Hello from Cell 1346")

greet_1346()
Cell 1346 - Before
Hello from Cell 1346
Cell 1346 - After
# Cell 1347 - decorators

def decorator_1347(func):
    def wrapper(*args, **kwargs):
        print("Cell 1347 - Before")
        result = func(*args, **kwargs)
        print("Cell 1347 - After")
        return result
    return wrapper

@decorator_1347
def greet_1347():
    print("Hello from Cell 1347")

greet_1347()
Cell 1347 - Before
Hello from Cell 1347
Cell 1347 - After
# Cell 1348 - decorators

def decorator_1348(func):
    def wrapper(*args, **kwargs):
        print("Cell 1348 - Before")
        result = func(*args, **kwargs)
        print("Cell 1348 - After")
        return result
    return wrapper

@decorator_1348
def greet_1348():
    print("Hello from Cell 1348")

greet_1348()
Cell 1348 - Before
Hello from Cell 1348
Cell 1348 - After
# Cell 1349 - decorators

def decorator_1349(func):
    def wrapper(*args, **kwargs):
        print("Cell 1349 - Before")
        result = func(*args, **kwargs)
        print("Cell 1349 - After")
        return result
    return wrapper

@decorator_1349
def greet_1349():
    print("Hello from Cell 1349")

greet_1349()
Cell 1349 - Before
Hello from Cell 1349
Cell 1349 - After
# Cell 1350 - decorators

def decorator_1350(func):
    def wrapper(*args, **kwargs):
        print("Cell 1350 - Before")
        result = func(*args, **kwargs)
        print("Cell 1350 - After")
        return result
    return wrapper

@decorator_1350
def greet_1350():
    print("Hello from Cell 1350")

greet_1350()
Cell 1350 - Before
Hello from Cell 1350
Cell 1350 - After
# Cell 1351 - decorators

def decorator_1351(func):
    def wrapper(*args, **kwargs):
        print("Cell 1351 - Before")
        result = func(*args, **kwargs)
        print("Cell 1351 - After")
        return result
    return wrapper

@decorator_1351
def greet_1351():
    print("Hello from Cell 1351")

greet_1351()
Cell 1351 - Before
Hello from Cell 1351
Cell 1351 - After
# Cell 1352 - decorators

def decorator_1352(func):
    def wrapper(*args, **kwargs):
        print("Cell 1352 - Before")
        result = func(*args, **kwargs)
        print("Cell 1352 - After")
        return result
    return wrapper

@decorator_1352
def greet_1352():
    print("Hello from Cell 1352")

greet_1352()
Cell 1352 - Before
Hello from Cell 1352
Cell 1352 - After
# Cell 1353 - decorators

def decorator_1353(func):
    def wrapper(*args, **kwargs):
        print("Cell 1353 - Before")
        result = func(*args, **kwargs)
        print("Cell 1353 - After")
        return result
    return wrapper

@decorator_1353
def greet_1353():
    print("Hello from Cell 1353")

greet_1353()
Cell 1353 - Before
Hello from Cell 1353
Cell 1353 - After
# Cell 1354 - decorators

def decorator_1354(func):
    def wrapper(*args, **kwargs):
        print("Cell 1354 - Before")
        result = func(*args, **kwargs)
        print("Cell 1354 - After")
        return result
    return wrapper

@decorator_1354
def greet_1354():
    print("Hello from Cell 1354")

greet_1354()
Cell 1354 - Before
Hello from Cell 1354
Cell 1354 - After
# Cell 1355 - decorators

def decorator_1355(func):
    def wrapper(*args, **kwargs):
        print("Cell 1355 - Before")
        result = func(*args, **kwargs)
        print("Cell 1355 - After")
        return result
    return wrapper

@decorator_1355
def greet_1355():
    print("Hello from Cell 1355")

greet_1355()
Cell 1355 - Before
Hello from Cell 1355
Cell 1355 - After
# Cell 1356 - decorators

def decorator_1356(func):
    def wrapper(*args, **kwargs):
        print("Cell 1356 - Before")
        result = func(*args, **kwargs)
        print("Cell 1356 - After")
        return result
    return wrapper

@decorator_1356
def greet_1356():
    print("Hello from Cell 1356")

greet_1356()
Cell 1356 - Before
Hello from Cell 1356
Cell 1356 - After
# Cell 1357 - decorators

def decorator_1357(func):
    def wrapper(*args, **kwargs):
        print("Cell 1357 - Before")
        result = func(*args, **kwargs)
        print("Cell 1357 - After")
        return result
    return wrapper

@decorator_1357
def greet_1357():
    print("Hello from Cell 1357")

greet_1357()
Cell 1357 - Before
Hello from Cell 1357
Cell 1357 - After
# Cell 1358 - decorators

def decorator_1358(func):
    def wrapper(*args, **kwargs):
        print("Cell 1358 - Before")
        result = func(*args, **kwargs)
        print("Cell 1358 - After")
        return result
    return wrapper

@decorator_1358
def greet_1358():
    print("Hello from Cell 1358")

greet_1358()
Cell 1358 - Before
Hello from Cell 1358
Cell 1358 - After
# Cell 1359 - decorators

def decorator_1359(func):
    def wrapper(*args, **kwargs):
        print("Cell 1359 - Before")
        result = func(*args, **kwargs)
        print("Cell 1359 - After")
        return result
    return wrapper

@decorator_1359
def greet_1359():
    print("Hello from Cell 1359")

greet_1359()
Cell 1359 - Before
Hello from Cell 1359
Cell 1359 - After
# Cell 1360 - decorators

def decorator_1360(func):
    def wrapper(*args, **kwargs):
        print("Cell 1360 - Before")
        result = func(*args, **kwargs)
        print("Cell 1360 - After")
        return result
    return wrapper

@decorator_1360
def greet_1360():
    print("Hello from Cell 1360")

greet_1360()
Cell 1360 - Before
Hello from Cell 1360
Cell 1360 - After
# Cell 1361 - decorators

def decorator_1361(func):
    def wrapper(*args, **kwargs):
        print("Cell 1361 - Before")
        result = func(*args, **kwargs)
        print("Cell 1361 - After")
        return result
    return wrapper

@decorator_1361
def greet_1361():
    print("Hello from Cell 1361")

greet_1361()
Cell 1361 - Before
Hello from Cell 1361
Cell 1361 - After
# Cell 1362 - decorators

def decorator_1362(func):
    def wrapper(*args, **kwargs):
        print("Cell 1362 - Before")
        result = func(*args, **kwargs)
        print("Cell 1362 - After")
        return result
    return wrapper

@decorator_1362
def greet_1362():
    print("Hello from Cell 1362")

greet_1362()
Cell 1362 - Before
Hello from Cell 1362
Cell 1362 - After
# Cell 1363 - decorators

def decorator_1363(func):
    def wrapper(*args, **kwargs):
        print("Cell 1363 - Before")
        result = func(*args, **kwargs)
        print("Cell 1363 - After")
        return result
    return wrapper

@decorator_1363
def greet_1363():
    print("Hello from Cell 1363")

greet_1363()
Cell 1363 - Before
Hello from Cell 1363
Cell 1363 - After
# Cell 1364 - decorators

def decorator_1364(func):
    def wrapper(*args, **kwargs):
        print("Cell 1364 - Before")
        result = func(*args, **kwargs)
        print("Cell 1364 - After")
        return result
    return wrapper

@decorator_1364
def greet_1364():
    print("Hello from Cell 1364")

greet_1364()
Cell 1364 - Before
Hello from Cell 1364
Cell 1364 - After
# Cell 1365 - decorators

def decorator_1365(func):
    def wrapper(*args, **kwargs):
        print("Cell 1365 - Before")
        result = func(*args, **kwargs)
        print("Cell 1365 - After")
        return result
    return wrapper

@decorator_1365
def greet_1365():
    print("Hello from Cell 1365")

greet_1365()
Cell 1365 - Before
Hello from Cell 1365
Cell 1365 - After
# Cell 1366 - decorators

def decorator_1366(func):
    def wrapper(*args, **kwargs):
        print("Cell 1366 - Before")
        result = func(*args, **kwargs)
        print("Cell 1366 - After")
        return result
    return wrapper

@decorator_1366
def greet_1366():
    print("Hello from Cell 1366")

greet_1366()
Cell 1366 - Before
Hello from Cell 1366
Cell 1366 - After
# Cell 1367 - decorators

def decorator_1367(func):
    def wrapper(*args, **kwargs):
        print("Cell 1367 - Before")
        result = func(*args, **kwargs)
        print("Cell 1367 - After")
        return result
    return wrapper

@decorator_1367
def greet_1367():
    print("Hello from Cell 1367")

greet_1367()
Cell 1367 - Before
Hello from Cell 1367
Cell 1367 - After
# Cell 1368 - decorators

def decorator_1368(func):
    def wrapper(*args, **kwargs):
        print("Cell 1368 - Before")
        result = func(*args, **kwargs)
        print("Cell 1368 - After")
        return result
    return wrapper

@decorator_1368
def greet_1368():
    print("Hello from Cell 1368")

greet_1368()
Cell 1368 - Before
Hello from Cell 1368
Cell 1368 - After
# Cell 1369 - decorators

def decorator_1369(func):
    def wrapper(*args, **kwargs):
        print("Cell 1369 - Before")
        result = func(*args, **kwargs)
        print("Cell 1369 - After")
        return result
    return wrapper

@decorator_1369
def greet_1369():
    print("Hello from Cell 1369")

greet_1369()
Cell 1369 - Before
Hello from Cell 1369
Cell 1369 - After
# Cell 1370 - decorators

def decorator_1370(func):
    def wrapper(*args, **kwargs):
        print("Cell 1370 - Before")
        result = func(*args, **kwargs)
        print("Cell 1370 - After")
        return result
    return wrapper

@decorator_1370
def greet_1370():
    print("Hello from Cell 1370")

greet_1370()
Cell 1370 - Before
Hello from Cell 1370
Cell 1370 - After
# Cell 1371 - decorators

def decorator_1371(func):
    def wrapper(*args, **kwargs):
        print("Cell 1371 - Before")
        result = func(*args, **kwargs)
        print("Cell 1371 - After")
        return result
    return wrapper

@decorator_1371
def greet_1371():
    print("Hello from Cell 1371")

greet_1371()
Cell 1371 - Before
Hello from Cell 1371
Cell 1371 - After
# Cell 1372 - decorators

def decorator_1372(func):
    def wrapper(*args, **kwargs):
        print("Cell 1372 - Before")
        result = func(*args, **kwargs)
        print("Cell 1372 - After")
        return result
    return wrapper

@decorator_1372
def greet_1372():
    print("Hello from Cell 1372")

greet_1372()
Cell 1372 - Before
Hello from Cell 1372
Cell 1372 - After
# Cell 1373 - decorators

def decorator_1373(func):
    def wrapper(*args, **kwargs):
        print("Cell 1373 - Before")
        result = func(*args, **kwargs)
        print("Cell 1373 - After")
        return result
    return wrapper

@decorator_1373
def greet_1373():
    print("Hello from Cell 1373")

greet_1373()
Cell 1373 - Before
Hello from Cell 1373
Cell 1373 - After
# Cell 1374 - decorators

def decorator_1374(func):
    def wrapper(*args, **kwargs):
        print("Cell 1374 - Before")
        result = func(*args, **kwargs)
        print("Cell 1374 - After")
        return result
    return wrapper

@decorator_1374
def greet_1374():
    print("Hello from Cell 1374")

greet_1374()
Cell 1374 - Before
Hello from Cell 1374
Cell 1374 - After
# Cell 1375 - decorators

def decorator_1375(func):
    def wrapper(*args, **kwargs):
        print("Cell 1375 - Before")
        result = func(*args, **kwargs)
        print("Cell 1375 - After")
        return result
    return wrapper

@decorator_1375
def greet_1375():
    print("Hello from Cell 1375")

greet_1375()
Cell 1375 - Before
Hello from Cell 1375
Cell 1375 - After
# Cell 1376 - decorators

def decorator_1376(func):
    def wrapper(*args, **kwargs):
        print("Cell 1376 - Before")
        result = func(*args, **kwargs)
        print("Cell 1376 - After")
        return result
    return wrapper

@decorator_1376
def greet_1376():
    print("Hello from Cell 1376")

greet_1376()
Cell 1376 - Before
Hello from Cell 1376
Cell 1376 - After
# Cell 1377 - decorators

def decorator_1377(func):
    def wrapper(*args, **kwargs):
        print("Cell 1377 - Before")
        result = func(*args, **kwargs)
        print("Cell 1377 - After")
        return result
    return wrapper

@decorator_1377
def greet_1377():
    print("Hello from Cell 1377")

greet_1377()
Cell 1377 - Before
Hello from Cell 1377
Cell 1377 - After
# Cell 1378 - decorators

def decorator_1378(func):
    def wrapper(*args, **kwargs):
        print("Cell 1378 - Before")
        result = func(*args, **kwargs)
        print("Cell 1378 - After")
        return result
    return wrapper

@decorator_1378
def greet_1378():
    print("Hello from Cell 1378")

greet_1378()
Cell 1378 - Before
Hello from Cell 1378
Cell 1378 - After
# Cell 1379 - decorators

def decorator_1379(func):
    def wrapper(*args, **kwargs):
        print("Cell 1379 - Before")
        result = func(*args, **kwargs)
        print("Cell 1379 - After")
        return result
    return wrapper

@decorator_1379
def greet_1379():
    print("Hello from Cell 1379")

greet_1379()
Cell 1379 - Before
Hello from Cell 1379
Cell 1379 - After
# Cell 1380 - decorators

def decorator_1380(func):
    def wrapper(*args, **kwargs):
        print("Cell 1380 - Before")
        result = func(*args, **kwargs)
        print("Cell 1380 - After")
        return result
    return wrapper

@decorator_1380
def greet_1380():
    print("Hello from Cell 1380")

greet_1380()
Cell 1380 - Before
Hello from Cell 1380
Cell 1380 - After
# Cell 1381 - decorators

def decorator_1381(func):
    def wrapper(*args, **kwargs):
        print("Cell 1381 - Before")
        result = func(*args, **kwargs)
        print("Cell 1381 - After")
        return result
    return wrapper

@decorator_1381
def greet_1381():
    print("Hello from Cell 1381")

greet_1381()
Cell 1381 - Before
Hello from Cell 1381
Cell 1381 - After
# Cell 1382 - decorators

def decorator_1382(func):
    def wrapper(*args, **kwargs):
        print("Cell 1382 - Before")
        result = func(*args, **kwargs)
        print("Cell 1382 - After")
        return result
    return wrapper

@decorator_1382
def greet_1382():
    print("Hello from Cell 1382")

greet_1382()
Cell 1382 - Before
Hello from Cell 1382
Cell 1382 - After
# Cell 1383 - decorators

def decorator_1383(func):
    def wrapper(*args, **kwargs):
        print("Cell 1383 - Before")
        result = func(*args, **kwargs)
        print("Cell 1383 - After")
        return result
    return wrapper

@decorator_1383
def greet_1383():
    print("Hello from Cell 1383")

greet_1383()
Cell 1383 - Before
Hello from Cell 1383
Cell 1383 - After
# Cell 1384 - decorators

def decorator_1384(func):
    def wrapper(*args, **kwargs):
        print("Cell 1384 - Before")
        result = func(*args, **kwargs)
        print("Cell 1384 - After")
        return result
    return wrapper

@decorator_1384
def greet_1384():
    print("Hello from Cell 1384")

greet_1384()
Cell 1384 - Before
Hello from Cell 1384
Cell 1384 - After
# Cell 1385 - decorators

def decorator_1385(func):
    def wrapper(*args, **kwargs):
        print("Cell 1385 - Before")
        result = func(*args, **kwargs)
        print("Cell 1385 - After")
        return result
    return wrapper

@decorator_1385
def greet_1385():
    print("Hello from Cell 1385")

greet_1385()
Cell 1385 - Before
Hello from Cell 1385
Cell 1385 - After
# Cell 1386 - decorators

def decorator_1386(func):
    def wrapper(*args, **kwargs):
        print("Cell 1386 - Before")
        result = func(*args, **kwargs)
        print("Cell 1386 - After")
        return result
    return wrapper

@decorator_1386
def greet_1386():
    print("Hello from Cell 1386")

greet_1386()
Cell 1386 - Before
Hello from Cell 1386
Cell 1386 - After
# Cell 1387 - decorators

def decorator_1387(func):
    def wrapper(*args, **kwargs):
        print("Cell 1387 - Before")
        result = func(*args, **kwargs)
        print("Cell 1387 - After")
        return result
    return wrapper

@decorator_1387
def greet_1387():
    print("Hello from Cell 1387")

greet_1387()
Cell 1387 - Before
Hello from Cell 1387
Cell 1387 - After
# Cell 1388 - decorators

def decorator_1388(func):
    def wrapper(*args, **kwargs):
        print("Cell 1388 - Before")
        result = func(*args, **kwargs)
        print("Cell 1388 - After")
        return result
    return wrapper

@decorator_1388
def greet_1388():
    print("Hello from Cell 1388")

greet_1388()
Cell 1388 - Before
Hello from Cell 1388
Cell 1388 - After
# Cell 1389 - decorators

def decorator_1389(func):
    def wrapper(*args, **kwargs):
        print("Cell 1389 - Before")
        result = func(*args, **kwargs)
        print("Cell 1389 - After")
        return result
    return wrapper

@decorator_1389
def greet_1389():
    print("Hello from Cell 1389")

greet_1389()
Cell 1389 - Before
Hello from Cell 1389
Cell 1389 - After
# Cell 1390 - decorators

def decorator_1390(func):
    def wrapper(*args, **kwargs):
        print("Cell 1390 - Before")
        result = func(*args, **kwargs)
        print("Cell 1390 - After")
        return result
    return wrapper

@decorator_1390
def greet_1390():
    print("Hello from Cell 1390")

greet_1390()
Cell 1390 - Before
Hello from Cell 1390
Cell 1390 - After
# Cell 1391 - decorators

def decorator_1391(func):
    def wrapper(*args, **kwargs):
        print("Cell 1391 - Before")
        result = func(*args, **kwargs)
        print("Cell 1391 - After")
        return result
    return wrapper

@decorator_1391
def greet_1391():
    print("Hello from Cell 1391")

greet_1391()
Cell 1391 - Before
Hello from Cell 1391
Cell 1391 - After
# Cell 1392 - decorators

def decorator_1392(func):
    def wrapper(*args, **kwargs):
        print("Cell 1392 - Before")
        result = func(*args, **kwargs)
        print("Cell 1392 - After")
        return result
    return wrapper

@decorator_1392
def greet_1392():
    print("Hello from Cell 1392")

greet_1392()
Cell 1392 - Before
Hello from Cell 1392
Cell 1392 - After
# Cell 1393 - decorators

def decorator_1393(func):
    def wrapper(*args, **kwargs):
        print("Cell 1393 - Before")
        result = func(*args, **kwargs)
        print("Cell 1393 - After")
        return result
    return wrapper

@decorator_1393
def greet_1393():
    print("Hello from Cell 1393")

greet_1393()
Cell 1393 - Before
Hello from Cell 1393
Cell 1393 - After
# Cell 1394 - decorators

def decorator_1394(func):
    def wrapper(*args, **kwargs):
        print("Cell 1394 - Before")
        result = func(*args, **kwargs)
        print("Cell 1394 - After")
        return result
    return wrapper

@decorator_1394
def greet_1394():
    print("Hello from Cell 1394")

greet_1394()
Cell 1394 - Before
Hello from Cell 1394
Cell 1394 - After
# Cell 1395 - decorators

def decorator_1395(func):
    def wrapper(*args, **kwargs):
        print("Cell 1395 - Before")
        result = func(*args, **kwargs)
        print("Cell 1395 - After")
        return result
    return wrapper

@decorator_1395
def greet_1395():
    print("Hello from Cell 1395")

greet_1395()
Cell 1395 - Before
Hello from Cell 1395
Cell 1395 - After
# Cell 1396 - decorators

def decorator_1396(func):
    def wrapper(*args, **kwargs):
        print("Cell 1396 - Before")
        result = func(*args, **kwargs)
        print("Cell 1396 - After")
        return result
    return wrapper

@decorator_1396
def greet_1396():
    print("Hello from Cell 1396")

greet_1396()
Cell 1396 - Before
Hello from Cell 1396
Cell 1396 - After
# Cell 1397 - decorators

def decorator_1397(func):
    def wrapper(*args, **kwargs):
        print("Cell 1397 - Before")
        result = func(*args, **kwargs)
        print("Cell 1397 - After")
        return result
    return wrapper

@decorator_1397
def greet_1397():
    print("Hello from Cell 1397")

greet_1397()
Cell 1397 - Before
Hello from Cell 1397
Cell 1397 - After
# Cell 1398 - decorators

def decorator_1398(func):
    def wrapper(*args, **kwargs):
        print("Cell 1398 - Before")
        result = func(*args, **kwargs)
        print("Cell 1398 - After")
        return result
    return wrapper

@decorator_1398
def greet_1398():
    print("Hello from Cell 1398")

greet_1398()
Cell 1398 - Before
Hello from Cell 1398
Cell 1398 - After
# Cell 1399 - decorators

def decorator_1399(func):
    def wrapper(*args, **kwargs):
        print("Cell 1399 - Before")
        result = func(*args, **kwargs)
        print("Cell 1399 - After")
        return result
    return wrapper

@decorator_1399
def greet_1399():
    print("Hello from Cell 1399")

greet_1399()
Cell 1399 - Before
Hello from Cell 1399
Cell 1399 - After
# Cell 1400 - decorators

def decorator_1400(func):
    def wrapper(*args, **kwargs):
        print("Cell 1400 - Before")
        result = func(*args, **kwargs)
        print("Cell 1400 - After")
        return result
    return wrapper

@decorator_1400
def greet_1400():
    print("Hello from Cell 1400")

greet_1400()
Cell 1400 - Before
Hello from Cell 1400
Cell 1400 - After
# Cell 1401 - decorators

def decorator_1401(func):
    def wrapper(*args, **kwargs):
        print("Cell 1401 - Before")
        result = func(*args, **kwargs)
        print("Cell 1401 - After")
        return result
    return wrapper

@decorator_1401
def greet_1401():
    print("Hello from Cell 1401")

greet_1401()
Cell 1401 - Before
Hello from Cell 1401
Cell 1401 - After
# Cell 1402 - decorators

def decorator_1402(func):
    def wrapper(*args, **kwargs):
        print("Cell 1402 - Before")
        result = func(*args, **kwargs)
        print("Cell 1402 - After")
        return result
    return wrapper

@decorator_1402
def greet_1402():
    print("Hello from Cell 1402")

greet_1402()
Cell 1402 - Before
Hello from Cell 1402
Cell 1402 - After
# Cell 1403 - decorators

def decorator_1403(func):
    def wrapper(*args, **kwargs):
        print("Cell 1403 - Before")
        result = func(*args, **kwargs)
        print("Cell 1403 - After")
        return result
    return wrapper

@decorator_1403
def greet_1403():
    print("Hello from Cell 1403")

greet_1403()
Cell 1403 - Before
Hello from Cell 1403
Cell 1403 - After
# Cell 1404 - decorators

def decorator_1404(func):
    def wrapper(*args, **kwargs):
        print("Cell 1404 - Before")
        result = func(*args, **kwargs)
        print("Cell 1404 - After")
        return result
    return wrapper

@decorator_1404
def greet_1404():
    print("Hello from Cell 1404")

greet_1404()
Cell 1404 - Before
Hello from Cell 1404
Cell 1404 - After
# Cell 1405 - decorators

def decorator_1405(func):
    def wrapper(*args, **kwargs):
        print("Cell 1405 - Before")
        result = func(*args, **kwargs)
        print("Cell 1405 - After")
        return result
    return wrapper

@decorator_1405
def greet_1405():
    print("Hello from Cell 1405")

greet_1405()
Cell 1405 - Before
Hello from Cell 1405
Cell 1405 - After
# Cell 1406 - decorators

def decorator_1406(func):
    def wrapper(*args, **kwargs):
        print("Cell 1406 - Before")
        result = func(*args, **kwargs)
        print("Cell 1406 - After")
        return result
    return wrapper

@decorator_1406
def greet_1406():
    print("Hello from Cell 1406")

greet_1406()
Cell 1406 - Before
Hello from Cell 1406
Cell 1406 - After
# Cell 1407 - decorators

def decorator_1407(func):
    def wrapper(*args, **kwargs):
        print("Cell 1407 - Before")
        result = func(*args, **kwargs)
        print("Cell 1407 - After")
        return result
    return wrapper

@decorator_1407
def greet_1407():
    print("Hello from Cell 1407")

greet_1407()
Cell 1407 - Before
Hello from Cell 1407
Cell 1407 - After
# Cell 1408 - decorators

def decorator_1408(func):
    def wrapper(*args, **kwargs):
        print("Cell 1408 - Before")
        result = func(*args, **kwargs)
        print("Cell 1408 - After")
        return result
    return wrapper

@decorator_1408
def greet_1408():
    print("Hello from Cell 1408")

greet_1408()
Cell 1408 - Before
Hello from Cell 1408
Cell 1408 - After
# Cell 1409 - decorators

def decorator_1409(func):
    def wrapper(*args, **kwargs):
        print("Cell 1409 - Before")
        result = func(*args, **kwargs)
        print("Cell 1409 - After")
        return result
    return wrapper

@decorator_1409
def greet_1409():
    print("Hello from Cell 1409")

greet_1409()
Cell 1409 - Before
Hello from Cell 1409
Cell 1409 - After
# Cell 1410 - decorators

def decorator_1410(func):
    def wrapper(*args, **kwargs):
        print("Cell 1410 - Before")
        result = func(*args, **kwargs)
        print("Cell 1410 - After")
        return result
    return wrapper

@decorator_1410
def greet_1410():
    print("Hello from Cell 1410")

greet_1410()
Cell 1410 - Before
Hello from Cell 1410
Cell 1410 - After
# Cell 1411 - decorators

def decorator_1411(func):
    def wrapper(*args, **kwargs):
        print("Cell 1411 - Before")
        result = func(*args, **kwargs)
        print("Cell 1411 - After")
        return result
    return wrapper

@decorator_1411
def greet_1411():
    print("Hello from Cell 1411")

greet_1411()
Cell 1411 - Before
Hello from Cell 1411
Cell 1411 - After
# Cell 1412 - decorators

def decorator_1412(func):
    def wrapper(*args, **kwargs):
        print("Cell 1412 - Before")
        result = func(*args, **kwargs)
        print("Cell 1412 - After")
        return result
    return wrapper

@decorator_1412
def greet_1412():
    print("Hello from Cell 1412")

greet_1412()
Cell 1412 - Before
Hello from Cell 1412
Cell 1412 - After
# Cell 1413 - decorators

def decorator_1413(func):
    def wrapper(*args, **kwargs):
        print("Cell 1413 - Before")
        result = func(*args, **kwargs)
        print("Cell 1413 - After")
        return result
    return wrapper

@decorator_1413
def greet_1413():
    print("Hello from Cell 1413")

greet_1413()
Cell 1413 - Before
Hello from Cell 1413
Cell 1413 - After
# Cell 1414 - decorators

def decorator_1414(func):
    def wrapper(*args, **kwargs):
        print("Cell 1414 - Before")
        result = func(*args, **kwargs)
        print("Cell 1414 - After")
        return result
    return wrapper

@decorator_1414
def greet_1414():
    print("Hello from Cell 1414")

greet_1414()
Cell 1414 - Before
Hello from Cell 1414
Cell 1414 - After
# Cell 1415 - decorators

def decorator_1415(func):
    def wrapper(*args, **kwargs):
        print("Cell 1415 - Before")
        result = func(*args, **kwargs)
        print("Cell 1415 - After")
        return result
    return wrapper

@decorator_1415
def greet_1415():
    print("Hello from Cell 1415")

greet_1415()
Cell 1415 - Before
Hello from Cell 1415
Cell 1415 - After
# Cell 1416 - decorators

def decorator_1416(func):
    def wrapper(*args, **kwargs):
        print("Cell 1416 - Before")
        result = func(*args, **kwargs)
        print("Cell 1416 - After")
        return result
    return wrapper

@decorator_1416
def greet_1416():
    print("Hello from Cell 1416")

greet_1416()
Cell 1416 - Before
Hello from Cell 1416
Cell 1416 - After
# Cell 1417 - decorators

def decorator_1417(func):
    def wrapper(*args, **kwargs):
        print("Cell 1417 - Before")
        result = func(*args, **kwargs)
        print("Cell 1417 - After")
        return result
    return wrapper

@decorator_1417
def greet_1417():
    print("Hello from Cell 1417")

greet_1417()
Cell 1417 - Before
Hello from Cell 1417
Cell 1417 - After
# Cell 1418 - decorators

def decorator_1418(func):
    def wrapper(*args, **kwargs):
        print("Cell 1418 - Before")
        result = func(*args, **kwargs)
        print("Cell 1418 - After")
        return result
    return wrapper

@decorator_1418
def greet_1418():
    print("Hello from Cell 1418")

greet_1418()
Cell 1418 - Before
Hello from Cell 1418
Cell 1418 - After
# Cell 1419 - decorators

def decorator_1419(func):
    def wrapper(*args, **kwargs):
        print("Cell 1419 - Before")
        result = func(*args, **kwargs)
        print("Cell 1419 - After")
        return result
    return wrapper

@decorator_1419
def greet_1419():
    print("Hello from Cell 1419")

greet_1419()
Cell 1419 - Before
Hello from Cell 1419
Cell 1419 - After
# Cell 1420 - decorators

def decorator_1420(func):
    def wrapper(*args, **kwargs):
        print("Cell 1420 - Before")
        result = func(*args, **kwargs)
        print("Cell 1420 - After")
        return result
    return wrapper

@decorator_1420
def greet_1420():
    print("Hello from Cell 1420")

greet_1420()
Cell 1420 - Before
Hello from Cell 1420
Cell 1420 - After
# Cell 1421 - decorators

def decorator_1421(func):
    def wrapper(*args, **kwargs):
        print("Cell 1421 - Before")
        result = func(*args, **kwargs)
        print("Cell 1421 - After")
        return result
    return wrapper

@decorator_1421
def greet_1421():
    print("Hello from Cell 1421")

greet_1421()
Cell 1421 - Before
Hello from Cell 1421
Cell 1421 - After
# Cell 1422 - decorators

def decorator_1422(func):
    def wrapper(*args, **kwargs):
        print("Cell 1422 - Before")
        result = func(*args, **kwargs)
        print("Cell 1422 - After")
        return result
    return wrapper

@decorator_1422
def greet_1422():
    print("Hello from Cell 1422")

greet_1422()
Cell 1422 - Before
Hello from Cell 1422
Cell 1422 - After
# Cell 1423 - decorators

def decorator_1423(func):
    def wrapper(*args, **kwargs):
        print("Cell 1423 - Before")
        result = func(*args, **kwargs)
        print("Cell 1423 - After")
        return result
    return wrapper

@decorator_1423
def greet_1423():
    print("Hello from Cell 1423")

greet_1423()
Cell 1423 - Before
Hello from Cell 1423
Cell 1423 - After
# Cell 1424 - decorators

def decorator_1424(func):
    def wrapper(*args, **kwargs):
        print("Cell 1424 - Before")
        result = func(*args, **kwargs)
        print("Cell 1424 - After")
        return result
    return wrapper

@decorator_1424
def greet_1424():
    print("Hello from Cell 1424")

greet_1424()
Cell 1424 - Before
Hello from Cell 1424
Cell 1424 - After
# Cell 1425 - decorators

def decorator_1425(func):
    def wrapper(*args, **kwargs):
        print("Cell 1425 - Before")
        result = func(*args, **kwargs)
        print("Cell 1425 - After")
        return result
    return wrapper

@decorator_1425
def greet_1425():
    print("Hello from Cell 1425")

greet_1425()
Cell 1425 - Before
Hello from Cell 1425
Cell 1425 - After
# Cell 1426 - decorators

def decorator_1426(func):
    def wrapper(*args, **kwargs):
        print("Cell 1426 - Before")
        result = func(*args, **kwargs)
        print("Cell 1426 - After")
        return result
    return wrapper

@decorator_1426
def greet_1426():
    print("Hello from Cell 1426")

greet_1426()
Cell 1426 - Before
Hello from Cell 1426
Cell 1426 - After
# Cell 1427 - decorators

def decorator_1427(func):
    def wrapper(*args, **kwargs):
        print("Cell 1427 - Before")
        result = func(*args, **kwargs)
        print("Cell 1427 - After")
        return result
    return wrapper

@decorator_1427
def greet_1427():
    print("Hello from Cell 1427")

greet_1427()
Cell 1427 - Before
Hello from Cell 1427
Cell 1427 - After
# Cell 1428 - decorators

def decorator_1428(func):
    def wrapper(*args, **kwargs):
        print("Cell 1428 - Before")
        result = func(*args, **kwargs)
        print("Cell 1428 - After")
        return result
    return wrapper

@decorator_1428
def greet_1428():
    print("Hello from Cell 1428")

greet_1428()
Cell 1428 - Before
Hello from Cell 1428
Cell 1428 - After
# Cell 1429 - decorators

def decorator_1429(func):
    def wrapper(*args, **kwargs):
        print("Cell 1429 - Before")
        result = func(*args, **kwargs)
        print("Cell 1429 - After")
        return result
    return wrapper

@decorator_1429
def greet_1429():
    print("Hello from Cell 1429")

greet_1429()
Cell 1429 - Before
Hello from Cell 1429
Cell 1429 - After
# Cell 1430 - decorators

def decorator_1430(func):
    def wrapper(*args, **kwargs):
        print("Cell 1430 - Before")
        result = func(*args, **kwargs)
        print("Cell 1430 - After")
        return result
    return wrapper

@decorator_1430
def greet_1430():
    print("Hello from Cell 1430")

greet_1430()
Cell 1430 - Before
Hello from Cell 1430
Cell 1430 - After
# Cell 1431 - decorators

def decorator_1431(func):
    def wrapper(*args, **kwargs):
        print("Cell 1431 - Before")
        result = func(*args, **kwargs)
        print("Cell 1431 - After")
        return result
    return wrapper

@decorator_1431
def greet_1431():
    print("Hello from Cell 1431")

greet_1431()
Cell 1431 - Before
Hello from Cell 1431
Cell 1431 - After
# Cell 1432 - decorators

def decorator_1432(func):
    def wrapper(*args, **kwargs):
        print("Cell 1432 - Before")
        result = func(*args, **kwargs)
        print("Cell 1432 - After")
        return result
    return wrapper

@decorator_1432
def greet_1432():
    print("Hello from Cell 1432")

greet_1432()
Cell 1432 - Before
Hello from Cell 1432
Cell 1432 - After
# Cell 1433 - decorators

def decorator_1433(func):
    def wrapper(*args, **kwargs):
        print("Cell 1433 - Before")
        result = func(*args, **kwargs)
        print("Cell 1433 - After")
        return result
    return wrapper

@decorator_1433
def greet_1433():
    print("Hello from Cell 1433")

greet_1433()
Cell 1433 - Before
Hello from Cell 1433
Cell 1433 - After
# Cell 1434 - decorators

def decorator_1434(func):
    def wrapper(*args, **kwargs):
        print("Cell 1434 - Before")
        result = func(*args, **kwargs)
        print("Cell 1434 - After")
        return result
    return wrapper

@decorator_1434
def greet_1434():
    print("Hello from Cell 1434")

greet_1434()
Cell 1434 - Before
Hello from Cell 1434
Cell 1434 - After
# Cell 1435 - decorators

def decorator_1435(func):
    def wrapper(*args, **kwargs):
        print("Cell 1435 - Before")
        result = func(*args, **kwargs)
        print("Cell 1435 - After")
        return result
    return wrapper

@decorator_1435
def greet_1435():
    print("Hello from Cell 1435")

greet_1435()
Cell 1435 - Before
Hello from Cell 1435
Cell 1435 - After
# Cell 1436 - decorators

def decorator_1436(func):
    def wrapper(*args, **kwargs):
        print("Cell 1436 - Before")
        result = func(*args, **kwargs)
        print("Cell 1436 - After")
        return result
    return wrapper

@decorator_1436
def greet_1436():
    print("Hello from Cell 1436")

greet_1436()
Cell 1436 - Before
Hello from Cell 1436
Cell 1436 - After
# Cell 1437 - decorators

def decorator_1437(func):
    def wrapper(*args, **kwargs):
        print("Cell 1437 - Before")
        result = func(*args, **kwargs)
        print("Cell 1437 - After")
        return result
    return wrapper

@decorator_1437
def greet_1437():
    print("Hello from Cell 1437")

greet_1437()
Cell 1437 - Before
Hello from Cell 1437
Cell 1437 - After
# Cell 1438 - decorators

def decorator_1438(func):
    def wrapper(*args, **kwargs):
        print("Cell 1438 - Before")
        result = func(*args, **kwargs)
        print("Cell 1438 - After")
        return result
    return wrapper

@decorator_1438
def greet_1438():
    print("Hello from Cell 1438")

greet_1438()
Cell 1438 - Before
Hello from Cell 1438
Cell 1438 - After
# Cell 1439 - decorators

def decorator_1439(func):
    def wrapper(*args, **kwargs):
        print("Cell 1439 - Before")
        result = func(*args, **kwargs)
        print("Cell 1439 - After")
        return result
    return wrapper

@decorator_1439
def greet_1439():
    print("Hello from Cell 1439")

greet_1439()
Cell 1439 - Before
Hello from Cell 1439
Cell 1439 - After
# Cell 1440 - decorators

def decorator_1440(func):
    def wrapper(*args, **kwargs):
        print("Cell 1440 - Before")
        result = func(*args, **kwargs)
        print("Cell 1440 - After")
        return result
    return wrapper

@decorator_1440
def greet_1440():
    print("Hello from Cell 1440")

greet_1440()
Cell 1440 - Before
Hello from Cell 1440
Cell 1440 - After
# Cell 1441 - decorators

def decorator_1441(func):
    def wrapper(*args, **kwargs):
        print("Cell 1441 - Before")
        result = func(*args, **kwargs)
        print("Cell 1441 - After")
        return result
    return wrapper

@decorator_1441
def greet_1441():
    print("Hello from Cell 1441")

greet_1441()
Cell 1441 - Before
Hello from Cell 1441
Cell 1441 - After
# Cell 1442 - decorators

def decorator_1442(func):
    def wrapper(*args, **kwargs):
        print("Cell 1442 - Before")
        result = func(*args, **kwargs)
        print("Cell 1442 - After")
        return result
    return wrapper

@decorator_1442
def greet_1442():
    print("Hello from Cell 1442")

greet_1442()
Cell 1442 - Before
Hello from Cell 1442
Cell 1442 - After
# Cell 1443 - decorators

def decorator_1443(func):
    def wrapper(*args, **kwargs):
        print("Cell 1443 - Before")
        result = func(*args, **kwargs)
        print("Cell 1443 - After")
        return result
    return wrapper

@decorator_1443
def greet_1443():
    print("Hello from Cell 1443")

greet_1443()
Cell 1443 - Before
Hello from Cell 1443
Cell 1443 - After
# Cell 1444 - decorators

def decorator_1444(func):
    def wrapper(*args, **kwargs):
        print("Cell 1444 - Before")
        result = func(*args, **kwargs)
        print("Cell 1444 - After")
        return result
    return wrapper

@decorator_1444
def greet_1444():
    print("Hello from Cell 1444")

greet_1444()
Cell 1444 - Before
Hello from Cell 1444
Cell 1444 - After
# Cell 1445 - decorators

def decorator_1445(func):
    def wrapper(*args, **kwargs):
        print("Cell 1445 - Before")
        result = func(*args, **kwargs)
        print("Cell 1445 - After")
        return result
    return wrapper

@decorator_1445
def greet_1445():
    print("Hello from Cell 1445")

greet_1445()
Cell 1445 - Before
Hello from Cell 1445
Cell 1445 - After
# Cell 1446 - decorators

def decorator_1446(func):
    def wrapper(*args, **kwargs):
        print("Cell 1446 - Before")
        result = func(*args, **kwargs)
        print("Cell 1446 - After")
        return result
    return wrapper

@decorator_1446
def greet_1446():
    print("Hello from Cell 1446")

greet_1446()
Cell 1446 - Before
Hello from Cell 1446
Cell 1446 - After
# Cell 1447 - decorators

def decorator_1447(func):
    def wrapper(*args, **kwargs):
        print("Cell 1447 - Before")
        result = func(*args, **kwargs)
        print("Cell 1447 - After")
        return result
    return wrapper

@decorator_1447
def greet_1447():
    print("Hello from Cell 1447")

greet_1447()
Cell 1447 - Before
Hello from Cell 1447
Cell 1447 - After
# Cell 1448 - decorators

def decorator_1448(func):
    def wrapper(*args, **kwargs):
        print("Cell 1448 - Before")
        result = func(*args, **kwargs)
        print("Cell 1448 - After")
        return result
    return wrapper

@decorator_1448
def greet_1448():
    print("Hello from Cell 1448")

greet_1448()
Cell 1448 - Before
Hello from Cell 1448
Cell 1448 - After
# Cell 1449 - decorators

def decorator_1449(func):
    def wrapper(*args, **kwargs):
        print("Cell 1449 - Before")
        result = func(*args, **kwargs)
        print("Cell 1449 - After")
        return result
    return wrapper

@decorator_1449
def greet_1449():
    print("Hello from Cell 1449")

greet_1449()
Cell 1449 - Before
Hello from Cell 1449
Cell 1449 - After
# Cell 1450 - decorators

def decorator_1450(func):
    def wrapper(*args, **kwargs):
        print("Cell 1450 - Before")
        result = func(*args, **kwargs)
        print("Cell 1450 - After")
        return result
    return wrapper

@decorator_1450
def greet_1450():
    print("Hello from Cell 1450")

greet_1450()
Cell 1450 - Before
Hello from Cell 1450
Cell 1450 - After
# Cell 1451 - decorators

def decorator_1451(func):
    def wrapper(*args, **kwargs):
        print("Cell 1451 - Before")
        result = func(*args, **kwargs)
        print("Cell 1451 - After")
        return result
    return wrapper

@decorator_1451
def greet_1451():
    print("Hello from Cell 1451")

greet_1451()
Cell 1451 - Before
Hello from Cell 1451
Cell 1451 - After
# Cell 1452 - decorators

def decorator_1452(func):
    def wrapper(*args, **kwargs):
        print("Cell 1452 - Before")
        result = func(*args, **kwargs)
        print("Cell 1452 - After")
        return result
    return wrapper

@decorator_1452
def greet_1452():
    print("Hello from Cell 1452")

greet_1452()
Cell 1452 - Before
Hello from Cell 1452
Cell 1452 - After
# Cell 1453 - decorators

def decorator_1453(func):
    def wrapper(*args, **kwargs):
        print("Cell 1453 - Before")
        result = func(*args, **kwargs)
        print("Cell 1453 - After")
        return result
    return wrapper

@decorator_1453
def greet_1453():
    print("Hello from Cell 1453")

greet_1453()
Cell 1453 - Before
Hello from Cell 1453
Cell 1453 - After
# Cell 1454 - decorators

def decorator_1454(func):
    def wrapper(*args, **kwargs):
        print("Cell 1454 - Before")
        result = func(*args, **kwargs)
        print("Cell 1454 - After")
        return result
    return wrapper

@decorator_1454
def greet_1454():
    print("Hello from Cell 1454")

greet_1454()
Cell 1454 - Before
Hello from Cell 1454
Cell 1454 - After
# Cell 1455 - decorators

def decorator_1455(func):
    def wrapper(*args, **kwargs):
        print("Cell 1455 - Before")
        result = func(*args, **kwargs)
        print("Cell 1455 - After")
        return result
    return wrapper

@decorator_1455
def greet_1455():
    print("Hello from Cell 1455")

greet_1455()
Cell 1455 - Before
Hello from Cell 1455
Cell 1455 - After
# Cell 1456 - decorators

def decorator_1456(func):
    def wrapper(*args, **kwargs):
        print("Cell 1456 - Before")
        result = func(*args, **kwargs)
        print("Cell 1456 - After")
        return result
    return wrapper

@decorator_1456
def greet_1456():
    print("Hello from Cell 1456")

greet_1456()
Cell 1456 - Before
Hello from Cell 1456
Cell 1456 - After
# Cell 1457 - decorators

def decorator_1457(func):
    def wrapper(*args, **kwargs):
        print("Cell 1457 - Before")
        result = func(*args, **kwargs)
        print("Cell 1457 - After")
        return result
    return wrapper

@decorator_1457
def greet_1457():
    print("Hello from Cell 1457")

greet_1457()
Cell 1457 - Before
Hello from Cell 1457
Cell 1457 - After
# Cell 1458 - decorators

def decorator_1458(func):
    def wrapper(*args, **kwargs):
        print("Cell 1458 - Before")
        result = func(*args, **kwargs)
        print("Cell 1458 - After")
        return result
    return wrapper

@decorator_1458
def greet_1458():
    print("Hello from Cell 1458")

greet_1458()
Cell 1458 - Before
Hello from Cell 1458
Cell 1458 - After
# Cell 1459 - decorators

def decorator_1459(func):
    def wrapper(*args, **kwargs):
        print("Cell 1459 - Before")
        result = func(*args, **kwargs)
        print("Cell 1459 - After")
        return result
    return wrapper

@decorator_1459
def greet_1459():
    print("Hello from Cell 1459")

greet_1459()
Cell 1459 - Before
Hello from Cell 1459
Cell 1459 - After
# Cell 1460 - decorators

def decorator_1460(func):
    def wrapper(*args, **kwargs):
        print("Cell 1460 - Before")
        result = func(*args, **kwargs)
        print("Cell 1460 - After")
        return result
    return wrapper

@decorator_1460
def greet_1460():
    print("Hello from Cell 1460")

greet_1460()
Cell 1460 - Before
Hello from Cell 1460
Cell 1460 - After
# Cell 1461 - decorators

def decorator_1461(func):
    def wrapper(*args, **kwargs):
        print("Cell 1461 - Before")
        result = func(*args, **kwargs)
        print("Cell 1461 - After")
        return result
    return wrapper

@decorator_1461
def greet_1461():
    print("Hello from Cell 1461")

greet_1461()
Cell 1461 - Before
Hello from Cell 1461
Cell 1461 - After
# Cell 1462 - decorators

def decorator_1462(func):
    def wrapper(*args, **kwargs):
        print("Cell 1462 - Before")
        result = func(*args, **kwargs)
        print("Cell 1462 - After")
        return result
    return wrapper

@decorator_1462
def greet_1462():
    print("Hello from Cell 1462")

greet_1462()
Cell 1462 - Before
Hello from Cell 1462
Cell 1462 - After
# Cell 1463 - decorators

def decorator_1463(func):
    def wrapper(*args, **kwargs):
        print("Cell 1463 - Before")
        result = func(*args, **kwargs)
        print("Cell 1463 - After")
        return result
    return wrapper

@decorator_1463
def greet_1463():
    print("Hello from Cell 1463")

greet_1463()
Cell 1463 - Before
Hello from Cell 1463
Cell 1463 - After
# Cell 1464 - decorators

def decorator_1464(func):
    def wrapper(*args, **kwargs):
        print("Cell 1464 - Before")
        result = func(*args, **kwargs)
        print("Cell 1464 - After")
        return result
    return wrapper

@decorator_1464
def greet_1464():
    print("Hello from Cell 1464")

greet_1464()
Cell 1464 - Before
Hello from Cell 1464
Cell 1464 - After
# Cell 1465 - decorators

def decorator_1465(func):
    def wrapper(*args, **kwargs):
        print("Cell 1465 - Before")
        result = func(*args, **kwargs)
        print("Cell 1465 - After")
        return result
    return wrapper

@decorator_1465
def greet_1465():
    print("Hello from Cell 1465")

greet_1465()
Cell 1465 - Before
Hello from Cell 1465
Cell 1465 - After
# Cell 1466 - decorators

def decorator_1466(func):
    def wrapper(*args, **kwargs):
        print("Cell 1466 - Before")
        result = func(*args, **kwargs)
        print("Cell 1466 - After")
        return result
    return wrapper

@decorator_1466
def greet_1466():
    print("Hello from Cell 1466")

greet_1466()
Cell 1466 - Before
Hello from Cell 1466
Cell 1466 - After
# Cell 1467 - decorators

def decorator_1467(func):
    def wrapper(*args, **kwargs):
        print("Cell 1467 - Before")
        result = func(*args, **kwargs)
        print("Cell 1467 - After")
        return result
    return wrapper

@decorator_1467
def greet_1467():
    print("Hello from Cell 1467")

greet_1467()
Cell 1467 - Before
Hello from Cell 1467
Cell 1467 - After
# Cell 1468 - decorators

def decorator_1468(func):
    def wrapper(*args, **kwargs):
        print("Cell 1468 - Before")
        result = func(*args, **kwargs)
        print("Cell 1468 - After")
        return result
    return wrapper

@decorator_1468
def greet_1468():
    print("Hello from Cell 1468")

greet_1468()
Cell 1468 - Before
Hello from Cell 1468
Cell 1468 - After
# Cell 1469 - decorators

def decorator_1469(func):
    def wrapper(*args, **kwargs):
        print("Cell 1469 - Before")
        result = func(*args, **kwargs)
        print("Cell 1469 - After")
        return result
    return wrapper

@decorator_1469
def greet_1469():
    print("Hello from Cell 1469")

greet_1469()
Cell 1469 - Before
Hello from Cell 1469
Cell 1469 - After
# Cell 1470 - decorators

def decorator_1470(func):
    def wrapper(*args, **kwargs):
        print("Cell 1470 - Before")
        result = func(*args, **kwargs)
        print("Cell 1470 - After")
        return result
    return wrapper

@decorator_1470
def greet_1470():
    print("Hello from Cell 1470")

greet_1470()
Cell 1470 - Before
Hello from Cell 1470
Cell 1470 - After
# Cell 1471 - decorators

def decorator_1471(func):
    def wrapper(*args, **kwargs):
        print("Cell 1471 - Before")
        result = func(*args, **kwargs)
        print("Cell 1471 - After")
        return result
    return wrapper

@decorator_1471
def greet_1471():
    print("Hello from Cell 1471")

greet_1471()
Cell 1471 - Before
Hello from Cell 1471
Cell 1471 - After
# Cell 1472 - decorators

def decorator_1472(func):
    def wrapper(*args, **kwargs):
        print("Cell 1472 - Before")
        result = func(*args, **kwargs)
        print("Cell 1472 - After")
        return result
    return wrapper

@decorator_1472
def greet_1472():
    print("Hello from Cell 1472")

greet_1472()
Cell 1472 - Before
Hello from Cell 1472
Cell 1472 - After
# Cell 1473 - decorators

def decorator_1473(func):
    def wrapper(*args, **kwargs):
        print("Cell 1473 - Before")
        result = func(*args, **kwargs)
        print("Cell 1473 - After")
        return result
    return wrapper

@decorator_1473
def greet_1473():
    print("Hello from Cell 1473")

greet_1473()
Cell 1473 - Before
Hello from Cell 1473
Cell 1473 - After
# Cell 1474 - decorators

def decorator_1474(func):
    def wrapper(*args, **kwargs):
        print("Cell 1474 - Before")
        result = func(*args, **kwargs)
        print("Cell 1474 - After")
        return result
    return wrapper

@decorator_1474
def greet_1474():
    print("Hello from Cell 1474")

greet_1474()
Cell 1474 - Before
Hello from Cell 1474
Cell 1474 - After
# Cell 1475 - decorators

def decorator_1475(func):
    def wrapper(*args, **kwargs):
        print("Cell 1475 - Before")
        result = func(*args, **kwargs)
        print("Cell 1475 - After")
        return result
    return wrapper

@decorator_1475
def greet_1475():
    print("Hello from Cell 1475")

greet_1475()
Cell 1475 - Before
Hello from Cell 1475
Cell 1475 - After
# Cell 1476 - decorators

def decorator_1476(func):
    def wrapper(*args, **kwargs):
        print("Cell 1476 - Before")
        result = func(*args, **kwargs)
        print("Cell 1476 - After")
        return result
    return wrapper

@decorator_1476
def greet_1476():
    print("Hello from Cell 1476")

greet_1476()
Cell 1476 - Before
Hello from Cell 1476
Cell 1476 - After
# Cell 1477 - decorators

def decorator_1477(func):
    def wrapper(*args, **kwargs):
        print("Cell 1477 - Before")
        result = func(*args, **kwargs)
        print("Cell 1477 - After")
        return result
    return wrapper

@decorator_1477
def greet_1477():
    print("Hello from Cell 1477")

greet_1477()
Cell 1477 - Before
Hello from Cell 1477
Cell 1477 - After
# Cell 1478 - decorators

def decorator_1478(func):
    def wrapper(*args, **kwargs):
        print("Cell 1478 - Before")
        result = func(*args, **kwargs)
        print("Cell 1478 - After")
        return result
    return wrapper

@decorator_1478
def greet_1478():
    print("Hello from Cell 1478")

greet_1478()
Cell 1478 - Before
Hello from Cell 1478
Cell 1478 - After
# Cell 1479 - decorators

def decorator_1479(func):
    def wrapper(*args, **kwargs):
        print("Cell 1479 - Before")
        result = func(*args, **kwargs)
        print("Cell 1479 - After")
        return result
    return wrapper

@decorator_1479
def greet_1479():
    print("Hello from Cell 1479")

greet_1479()
Cell 1479 - Before
Hello from Cell 1479
Cell 1479 - After
# Cell 1480 - decorators

def decorator_1480(func):
    def wrapper(*args, **kwargs):
        print("Cell 1480 - Before")
        result = func(*args, **kwargs)
        print("Cell 1480 - After")
        return result
    return wrapper

@decorator_1480
def greet_1480():
    print("Hello from Cell 1480")

greet_1480()
Cell 1480 - Before
Hello from Cell 1480
Cell 1480 - After
# Cell 1481 - decorators

def decorator_1481(func):
    def wrapper(*args, **kwargs):
        print("Cell 1481 - Before")
        result = func(*args, **kwargs)
        print("Cell 1481 - After")
        return result
    return wrapper

@decorator_1481
def greet_1481():
    print("Hello from Cell 1481")

greet_1481()
Cell 1481 - Before
Hello from Cell 1481
Cell 1481 - After
# Cell 1482 - decorators

def decorator_1482(func):
    def wrapper(*args, **kwargs):
        print("Cell 1482 - Before")
        result = func(*args, **kwargs)
        print("Cell 1482 - After")
        return result
    return wrapper

@decorator_1482
def greet_1482():
    print("Hello from Cell 1482")

greet_1482()
Cell 1482 - Before
Hello from Cell 1482
Cell 1482 - After
# Cell 1483 - decorators

def decorator_1483(func):
    def wrapper(*args, **kwargs):
        print("Cell 1483 - Before")
        result = func(*args, **kwargs)
        print("Cell 1483 - After")
        return result
    return wrapper

@decorator_1483
def greet_1483():
    print("Hello from Cell 1483")

greet_1483()
Cell 1483 - Before
Hello from Cell 1483
Cell 1483 - After
# Cell 1484 - decorators

def decorator_1484(func):
    def wrapper(*args, **kwargs):
        print("Cell 1484 - Before")
        result = func(*args, **kwargs)
        print("Cell 1484 - After")
        return result
    return wrapper

@decorator_1484
def greet_1484():
    print("Hello from Cell 1484")

greet_1484()
Cell 1484 - Before
Hello from Cell 1484
Cell 1484 - After
# Cell 1485 - decorators

def decorator_1485(func):
    def wrapper(*args, **kwargs):
        print("Cell 1485 - Before")
        result = func(*args, **kwargs)
        print("Cell 1485 - After")
        return result
    return wrapper

@decorator_1485
def greet_1485():
    print("Hello from Cell 1485")

greet_1485()
Cell 1485 - Before
Hello from Cell 1485
Cell 1485 - After
# Cell 1486 - decorators

def decorator_1486(func):
    def wrapper(*args, **kwargs):
        print("Cell 1486 - Before")
        result = func(*args, **kwargs)
        print("Cell 1486 - After")
        return result
    return wrapper

@decorator_1486
def greet_1486():
    print("Hello from Cell 1486")

greet_1486()
Cell 1486 - Before
Hello from Cell 1486
Cell 1486 - After
# Cell 1487 - decorators

def decorator_1487(func):
    def wrapper(*args, **kwargs):
        print("Cell 1487 - Before")
        result = func(*args, **kwargs)
        print("Cell 1487 - After")
        return result
    return wrapper

@decorator_1487
def greet_1487():
    print("Hello from Cell 1487")

greet_1487()
Cell 1487 - Before
Hello from Cell 1487
Cell 1487 - After
# Cell 1488 - decorators

def decorator_1488(func):
    def wrapper(*args, **kwargs):
        print("Cell 1488 - Before")
        result = func(*args, **kwargs)
        print("Cell 1488 - After")
        return result
    return wrapper

@decorator_1488
def greet_1488():
    print("Hello from Cell 1488")

greet_1488()
Cell 1488 - Before
Hello from Cell 1488
Cell 1488 - After
# Cell 1489 - decorators

def decorator_1489(func):
    def wrapper(*args, **kwargs):
        print("Cell 1489 - Before")
        result = func(*args, **kwargs)
        print("Cell 1489 - After")
        return result
    return wrapper

@decorator_1489
def greet_1489():
    print("Hello from Cell 1489")

greet_1489()
Cell 1489 - Before
Hello from Cell 1489
Cell 1489 - After
# Cell 1490 - decorators

def decorator_1490(func):
    def wrapper(*args, **kwargs):
        print("Cell 1490 - Before")
        result = func(*args, **kwargs)
        print("Cell 1490 - After")
        return result
    return wrapper

@decorator_1490
def greet_1490():
    print("Hello from Cell 1490")

greet_1490()
Cell 1490 - Before
Hello from Cell 1490
Cell 1490 - After
# Cell 1491 - decorators

def decorator_1491(func):
    def wrapper(*args, **kwargs):
        print("Cell 1491 - Before")
        result = func(*args, **kwargs)
        print("Cell 1491 - After")
        return result
    return wrapper

@decorator_1491
def greet_1491():
    print("Hello from Cell 1491")

greet_1491()
Cell 1491 - Before
Hello from Cell 1491
Cell 1491 - After
# Cell 1492 - decorators

def decorator_1492(func):
    def wrapper(*args, **kwargs):
        print("Cell 1492 - Before")
        result = func(*args, **kwargs)
        print("Cell 1492 - After")
        return result
    return wrapper

@decorator_1492
def greet_1492():
    print("Hello from Cell 1492")

greet_1492()
Cell 1492 - Before
Hello from Cell 1492
Cell 1492 - After
# Cell 1493 - decorators

def decorator_1493(func):
    def wrapper(*args, **kwargs):
        print("Cell 1493 - Before")
        result = func(*args, **kwargs)
        print("Cell 1493 - After")
        return result
    return wrapper

@decorator_1493
def greet_1493():
    print("Hello from Cell 1493")

greet_1493()
Cell 1493 - Before
Hello from Cell 1493
Cell 1493 - After
# Cell 1494 - decorators

def decorator_1494(func):
    def wrapper(*args, **kwargs):
        print("Cell 1494 - Before")
        result = func(*args, **kwargs)
        print("Cell 1494 - After")
        return result
    return wrapper

@decorator_1494
def greet_1494():
    print("Hello from Cell 1494")

greet_1494()
Cell 1494 - Before
Hello from Cell 1494
Cell 1494 - After
# Cell 1495 - decorators

def decorator_1495(func):
    def wrapper(*args, **kwargs):
        print("Cell 1495 - Before")
        result = func(*args, **kwargs)
        print("Cell 1495 - After")
        return result
    return wrapper

@decorator_1495
def greet_1495():
    print("Hello from Cell 1495")

greet_1495()
Cell 1495 - Before
Hello from Cell 1495
Cell 1495 - After
# Cell 1496 - decorators

def decorator_1496(func):
    def wrapper(*args, **kwargs):
        print("Cell 1496 - Before")
        result = func(*args, **kwargs)
        print("Cell 1496 - After")
        return result
    return wrapper

@decorator_1496
def greet_1496():
    print("Hello from Cell 1496")

greet_1496()
Cell 1496 - Before
Hello from Cell 1496
Cell 1496 - After
# Cell 1497 - decorators

def decorator_1497(func):
    def wrapper(*args, **kwargs):
        print("Cell 1497 - Before")
        result = func(*args, **kwargs)
        print("Cell 1497 - After")
        return result
    return wrapper

@decorator_1497
def greet_1497():
    print("Hello from Cell 1497")

greet_1497()
Cell 1497 - Before
Hello from Cell 1497
Cell 1497 - After
# Cell 1498 - decorators

def decorator_1498(func):
    def wrapper(*args, **kwargs):
        print("Cell 1498 - Before")
        result = func(*args, **kwargs)
        print("Cell 1498 - After")
        return result
    return wrapper

@decorator_1498
def greet_1498():
    print("Hello from Cell 1498")

greet_1498()
Cell 1498 - Before
Hello from Cell 1498
Cell 1498 - After
# Cell 1499 - decorators

def decorator_1499(func):
    def wrapper(*args, **kwargs):
        print("Cell 1499 - Before")
        result = func(*args, **kwargs)
        print("Cell 1499 - After")
        return result
    return wrapper

@decorator_1499
def greet_1499():
    print("Hello from Cell 1499")

greet_1499()
Cell 1499 - Before
Hello from Cell 1499
Cell 1499 - After
# Cell 1500 - decorators

def decorator_1500(func):
    def wrapper(*args, **kwargs):
        print("Cell 1500 - Before")
        result = func(*args, **kwargs)
        print("Cell 1500 - After")
        return result
    return wrapper

@decorator_1500
def greet_1500():
    print("Hello from Cell 1500")

greet_1500()
Cell 1500 - Before
Hello from Cell 1500
Cell 1500 - After
# Cell 1501 - decorators

def decorator_1501(func):
    def wrapper(*args, **kwargs):
        print("Cell 1501 - Before")
        result = func(*args, **kwargs)
        print("Cell 1501 - After")
        return result
    return wrapper

@decorator_1501
def greet_1501():
    print("Hello from Cell 1501")

greet_1501()
Cell 1501 - Before
Hello from Cell 1501
Cell 1501 - After
# Cell 1502 - decorators

def decorator_1502(func):
    def wrapper(*args, **kwargs):
        print("Cell 1502 - Before")
        result = func(*args, **kwargs)
        print("Cell 1502 - After")
        return result
    return wrapper

@decorator_1502
def greet_1502():
    print("Hello from Cell 1502")

greet_1502()
Cell 1502 - Before
Hello from Cell 1502
Cell 1502 - After
# Cell 1503 - decorators

def decorator_1503(func):
    def wrapper(*args, **kwargs):
        print("Cell 1503 - Before")
        result = func(*args, **kwargs)
        print("Cell 1503 - After")
        return result
    return wrapper

@decorator_1503
def greet_1503():
    print("Hello from Cell 1503")

greet_1503()
Cell 1503 - Before
Hello from Cell 1503
Cell 1503 - After
# Cell 1504 - decorators

def decorator_1504(func):
    def wrapper(*args, **kwargs):
        print("Cell 1504 - Before")
        result = func(*args, **kwargs)
        print("Cell 1504 - After")
        return result
    return wrapper

@decorator_1504
def greet_1504():
    print("Hello from Cell 1504")

greet_1504()
Cell 1504 - Before
Hello from Cell 1504
Cell 1504 - After
# Cell 1505 - decorators

def decorator_1505(func):
    def wrapper(*args, **kwargs):
        print("Cell 1505 - Before")
        result = func(*args, **kwargs)
        print("Cell 1505 - After")
        return result
    return wrapper

@decorator_1505
def greet_1505():
    print("Hello from Cell 1505")

greet_1505()
Cell 1505 - Before
Hello from Cell 1505
Cell 1505 - After
# Cell 1506 - decorators

def decorator_1506(func):
    def wrapper(*args, **kwargs):
        print("Cell 1506 - Before")
        result = func(*args, **kwargs)
        print("Cell 1506 - After")
        return result
    return wrapper

@decorator_1506
def greet_1506():
    print("Hello from Cell 1506")

greet_1506()
Cell 1506 - Before
Hello from Cell 1506
Cell 1506 - After
# Cell 1507 - decorators

def decorator_1507(func):
    def wrapper(*args, **kwargs):
        print("Cell 1507 - Before")
        result = func(*args, **kwargs)
        print("Cell 1507 - After")
        return result
    return wrapper

@decorator_1507
def greet_1507():
    print("Hello from Cell 1507")

greet_1507()
Cell 1507 - Before
Hello from Cell 1507
Cell 1507 - After
# Cell 1508 - decorators

def decorator_1508(func):
    def wrapper(*args, **kwargs):
        print("Cell 1508 - Before")
        result = func(*args, **kwargs)
        print("Cell 1508 - After")
        return result
    return wrapper

@decorator_1508
def greet_1508():
    print("Hello from Cell 1508")

greet_1508()
Cell 1508 - Before
Hello from Cell 1508
Cell 1508 - After
# Cell 1509 - decorators

def decorator_1509(func):
    def wrapper(*args, **kwargs):
        print("Cell 1509 - Before")
        result = func(*args, **kwargs)
        print("Cell 1509 - After")
        return result
    return wrapper

@decorator_1509
def greet_1509():
    print("Hello from Cell 1509")

greet_1509()
Cell 1509 - Before
Hello from Cell 1509
Cell 1509 - After
# Cell 1510 - decorators

def decorator_1510(func):
    def wrapper(*args, **kwargs):
        print("Cell 1510 - Before")
        result = func(*args, **kwargs)
        print("Cell 1510 - After")
        return result
    return wrapper

@decorator_1510
def greet_1510():
    print("Hello from Cell 1510")

greet_1510()
Cell 1510 - Before
Hello from Cell 1510
Cell 1510 - After
# Cell 1511 - decorators

def decorator_1511(func):
    def wrapper(*args, **kwargs):
        print("Cell 1511 - Before")
        result = func(*args, **kwargs)
        print("Cell 1511 - After")
        return result
    return wrapper

@decorator_1511
def greet_1511():
    print("Hello from Cell 1511")

greet_1511()
Cell 1511 - Before
Hello from Cell 1511
Cell 1511 - After
# Cell 1512 - decorators

def decorator_1512(func):
    def wrapper(*args, **kwargs):
        print("Cell 1512 - Before")
        result = func(*args, **kwargs)
        print("Cell 1512 - After")
        return result
    return wrapper

@decorator_1512
def greet_1512():
    print("Hello from Cell 1512")

greet_1512()
Cell 1512 - Before
Hello from Cell 1512
Cell 1512 - After
# Cell 1513 - decorators

def decorator_1513(func):
    def wrapper(*args, **kwargs):
        print("Cell 1513 - Before")
        result = func(*args, **kwargs)
        print("Cell 1513 - After")
        return result
    return wrapper

@decorator_1513
def greet_1513():
    print("Hello from Cell 1513")

greet_1513()
Cell 1513 - Before
Hello from Cell 1513
Cell 1513 - After
# Cell 1514 - decorators

def decorator_1514(func):
    def wrapper(*args, **kwargs):
        print("Cell 1514 - Before")
        result = func(*args, **kwargs)
        print("Cell 1514 - After")
        return result
    return wrapper

@decorator_1514
def greet_1514():
    print("Hello from Cell 1514")

greet_1514()
Cell 1514 - Before
Hello from Cell 1514
Cell 1514 - After
# Cell 1515 - decorators

def decorator_1515(func):
    def wrapper(*args, **kwargs):
        print("Cell 1515 - Before")
        result = func(*args, **kwargs)
        print("Cell 1515 - After")
        return result
    return wrapper

@decorator_1515
def greet_1515():
    print("Hello from Cell 1515")

greet_1515()
Cell 1515 - Before
Hello from Cell 1515
Cell 1515 - After
# Cell 1516 - decorators

def decorator_1516(func):
    def wrapper(*args, **kwargs):
        print("Cell 1516 - Before")
        result = func(*args, **kwargs)
        print("Cell 1516 - After")
        return result
    return wrapper

@decorator_1516
def greet_1516():
    print("Hello from Cell 1516")

greet_1516()
Cell 1516 - Before
Hello from Cell 1516
Cell 1516 - After
# Cell 1517 - decorators

def decorator_1517(func):
    def wrapper(*args, **kwargs):
        print("Cell 1517 - Before")
        result = func(*args, **kwargs)
        print("Cell 1517 - After")
        return result
    return wrapper

@decorator_1517
def greet_1517():
    print("Hello from Cell 1517")

greet_1517()
Cell 1517 - Before
Hello from Cell 1517
Cell 1517 - After
# Cell 1518 - decorators

def decorator_1518(func):
    def wrapper(*args, **kwargs):
        print("Cell 1518 - Before")
        result = func(*args, **kwargs)
        print("Cell 1518 - After")
        return result
    return wrapper

@decorator_1518
def greet_1518():
    print("Hello from Cell 1518")

greet_1518()
Cell 1518 - Before
Hello from Cell 1518
Cell 1518 - After
# Cell 1519 - decorators

def decorator_1519(func):
    def wrapper(*args, **kwargs):
        print("Cell 1519 - Before")
        result = func(*args, **kwargs)
        print("Cell 1519 - After")
        return result
    return wrapper

@decorator_1519
def greet_1519():
    print("Hello from Cell 1519")

greet_1519()
Cell 1519 - Before
Hello from Cell 1519
Cell 1519 - After
# Cell 1520 - decorators

def decorator_1520(func):
    def wrapper(*args, **kwargs):
        print("Cell 1520 - Before")
        result = func(*args, **kwargs)
        print("Cell 1520 - After")
        return result
    return wrapper

@decorator_1520
def greet_1520():
    print("Hello from Cell 1520")

greet_1520()
Cell 1520 - Before
Hello from Cell 1520
Cell 1520 - After
# Cell 1521 - decorators

def decorator_1521(func):
    def wrapper(*args, **kwargs):
        print("Cell 1521 - Before")
        result = func(*args, **kwargs)
        print("Cell 1521 - After")
        return result
    return wrapper

@decorator_1521
def greet_1521():
    print("Hello from Cell 1521")

greet_1521()
Cell 1521 - Before
Hello from Cell 1521
Cell 1521 - After
# Cell 1522 - decorators

def decorator_1522(func):
    def wrapper(*args, **kwargs):
        print("Cell 1522 - Before")
        result = func(*args, **kwargs)
        print("Cell 1522 - After")
        return result
    return wrapper

@decorator_1522
def greet_1522():
    print("Hello from Cell 1522")

greet_1522()
Cell 1522 - Before
Hello from Cell 1522
Cell 1522 - After
# Cell 1523 - decorators

def decorator_1523(func):
    def wrapper(*args, **kwargs):
        print("Cell 1523 - Before")
        result = func(*args, **kwargs)
        print("Cell 1523 - After")
        return result
    return wrapper

@decorator_1523
def greet_1523():
    print("Hello from Cell 1523")

greet_1523()
Cell 1523 - Before
Hello from Cell 1523
Cell 1523 - After
# Cell 1524 - decorators

def decorator_1524(func):
    def wrapper(*args, **kwargs):
        print("Cell 1524 - Before")
        result = func(*args, **kwargs)
        print("Cell 1524 - After")
        return result
    return wrapper

@decorator_1524
def greet_1524():
    print("Hello from Cell 1524")

greet_1524()
Cell 1524 - Before
Hello from Cell 1524
Cell 1524 - After
# Cell 1525 - decorators

def decorator_1525(func):
    def wrapper(*args, **kwargs):
        print("Cell 1525 - Before")
        result = func(*args, **kwargs)
        print("Cell 1525 - After")
        return result
    return wrapper

@decorator_1525
def greet_1525():
    print("Hello from Cell 1525")

greet_1525()
Cell 1525 - Before
Hello from Cell 1525
Cell 1525 - After
# Cell 1526 - decorators

def decorator_1526(func):
    def wrapper(*args, **kwargs):
        print("Cell 1526 - Before")
        result = func(*args, **kwargs)
        print("Cell 1526 - After")
        return result
    return wrapper

@decorator_1526
def greet_1526():
    print("Hello from Cell 1526")

greet_1526()
Cell 1526 - Before
Hello from Cell 1526
Cell 1526 - After
# Cell 1527 - decorators

def decorator_1527(func):
    def wrapper(*args, **kwargs):
        print("Cell 1527 - Before")
        result = func(*args, **kwargs)
        print("Cell 1527 - After")
        return result
    return wrapper

@decorator_1527
def greet_1527():
    print("Hello from Cell 1527")

greet_1527()
Cell 1527 - Before
Hello from Cell 1527
Cell 1527 - After
# Cell 1528 - decorators

def decorator_1528(func):
    def wrapper(*args, **kwargs):
        print("Cell 1528 - Before")
        result = func(*args, **kwargs)
        print("Cell 1528 - After")
        return result
    return wrapper

@decorator_1528
def greet_1528():
    print("Hello from Cell 1528")

greet_1528()
Cell 1528 - Before
Hello from Cell 1528
Cell 1528 - After
# Cell 1529 - decorators

def decorator_1529(func):
    def wrapper(*args, **kwargs):
        print("Cell 1529 - Before")
        result = func(*args, **kwargs)
        print("Cell 1529 - After")
        return result
    return wrapper

@decorator_1529
def greet_1529():
    print("Hello from Cell 1529")

greet_1529()
Cell 1529 - Before
Hello from Cell 1529
Cell 1529 - After
# Cell 1530 - decorators

def decorator_1530(func):
    def wrapper(*args, **kwargs):
        print("Cell 1530 - Before")
        result = func(*args, **kwargs)
        print("Cell 1530 - After")
        return result
    return wrapper

@decorator_1530
def greet_1530():
    print("Hello from Cell 1530")

greet_1530()
Cell 1530 - Before
Hello from Cell 1530
Cell 1530 - After
# Cell 1531 - decorators

def decorator_1531(func):
    def wrapper(*args, **kwargs):
        print("Cell 1531 - Before")
        result = func(*args, **kwargs)
        print("Cell 1531 - After")
        return result
    return wrapper

@decorator_1531
def greet_1531():
    print("Hello from Cell 1531")

greet_1531()
Cell 1531 - Before
Hello from Cell 1531
Cell 1531 - After
# Cell 1532 - decorators

def decorator_1532(func):
    def wrapper(*args, **kwargs):
        print("Cell 1532 - Before")
        result = func(*args, **kwargs)
        print("Cell 1532 - After")
        return result
    return wrapper

@decorator_1532
def greet_1532():
    print("Hello from Cell 1532")

greet_1532()
Cell 1532 - Before
Hello from Cell 1532
Cell 1532 - After
# Cell 1533 - decorators

def decorator_1533(func):
    def wrapper(*args, **kwargs):
        print("Cell 1533 - Before")
        result = func(*args, **kwargs)
        print("Cell 1533 - After")
        return result
    return wrapper

@decorator_1533
def greet_1533():
    print("Hello from Cell 1533")

greet_1533()
Cell 1533 - Before
Hello from Cell 1533
Cell 1533 - After
# Cell 1534 - decorators

def decorator_1534(func):
    def wrapper(*args, **kwargs):
        print("Cell 1534 - Before")
        result = func(*args, **kwargs)
        print("Cell 1534 - After")
        return result
    return wrapper

@decorator_1534
def greet_1534():
    print("Hello from Cell 1534")

greet_1534()
Cell 1534 - Before
Hello from Cell 1534
Cell 1534 - After
# Cell 1535 - decorators

def decorator_1535(func):
    def wrapper(*args, **kwargs):
        print("Cell 1535 - Before")
        result = func(*args, **kwargs)
        print("Cell 1535 - After")
        return result
    return wrapper

@decorator_1535
def greet_1535():
    print("Hello from Cell 1535")

greet_1535()
Cell 1535 - Before
Hello from Cell 1535
Cell 1535 - After
# Cell 1536 - decorators

def decorator_1536(func):
    def wrapper(*args, **kwargs):
        print("Cell 1536 - Before")
        result = func(*args, **kwargs)
        print("Cell 1536 - After")
        return result
    return wrapper

@decorator_1536
def greet_1536():
    print("Hello from Cell 1536")

greet_1536()
Cell 1536 - Before
Hello from Cell 1536
Cell 1536 - After
# Cell 1537 - decorators

def decorator_1537(func):
    def wrapper(*args, **kwargs):
        print("Cell 1537 - Before")
        result = func(*args, **kwargs)
        print("Cell 1537 - After")
        return result
    return wrapper

@decorator_1537
def greet_1537():
    print("Hello from Cell 1537")

greet_1537()
Cell 1537 - Before
Hello from Cell 1537
Cell 1537 - After
# Cell 1538 - decorators

def decorator_1538(func):
    def wrapper(*args, **kwargs):
        print("Cell 1538 - Before")
        result = func(*args, **kwargs)
        print("Cell 1538 - After")
        return result
    return wrapper

@decorator_1538
def greet_1538():
    print("Hello from Cell 1538")

greet_1538()
Cell 1538 - Before
Hello from Cell 1538
Cell 1538 - After
# Cell 1539 - decorators

def decorator_1539(func):
    def wrapper(*args, **kwargs):
        print("Cell 1539 - Before")
        result = func(*args, **kwargs)
        print("Cell 1539 - After")
        return result
    return wrapper

@decorator_1539
def greet_1539():
    print("Hello from Cell 1539")

greet_1539()
Cell 1539 - Before
Hello from Cell 1539
Cell 1539 - After
# Cell 1540 - decorators

def decorator_1540(func):
    def wrapper(*args, **kwargs):
        print("Cell 1540 - Before")
        result = func(*args, **kwargs)
        print("Cell 1540 - After")
        return result
    return wrapper

@decorator_1540
def greet_1540():
    print("Hello from Cell 1540")

greet_1540()
Cell 1540 - Before
Hello from Cell 1540
Cell 1540 - After
# Cell 1541 - decorators

def decorator_1541(func):
    def wrapper(*args, **kwargs):
        print("Cell 1541 - Before")
        result = func(*args, **kwargs)
        print("Cell 1541 - After")
        return result
    return wrapper

@decorator_1541
def greet_1541():
    print("Hello from Cell 1541")

greet_1541()
Cell 1541 - Before
Hello from Cell 1541
Cell 1541 - After
# Cell 1542 - decorators

def decorator_1542(func):
    def wrapper(*args, **kwargs):
        print("Cell 1542 - Before")
        result = func(*args, **kwargs)
        print("Cell 1542 - After")
        return result
    return wrapper

@decorator_1542
def greet_1542():
    print("Hello from Cell 1542")

greet_1542()
Cell 1542 - Before
Hello from Cell 1542
Cell 1542 - After
# Cell 1543 - decorators

def decorator_1543(func):
    def wrapper(*args, **kwargs):
        print("Cell 1543 - Before")
        result = func(*args, **kwargs)
        print("Cell 1543 - After")
        return result
    return wrapper

@decorator_1543
def greet_1543():
    print("Hello from Cell 1543")

greet_1543()
Cell 1543 - Before
Hello from Cell 1543
Cell 1543 - After
# Cell 1544 - decorators

def decorator_1544(func):
    def wrapper(*args, **kwargs):
        print("Cell 1544 - Before")
        result = func(*args, **kwargs)
        print("Cell 1544 - After")
        return result
    return wrapper

@decorator_1544
def greet_1544():
    print("Hello from Cell 1544")

greet_1544()
Cell 1544 - Before
Hello from Cell 1544
Cell 1544 - After
# Cell 1545 - decorators

def decorator_1545(func):
    def wrapper(*args, **kwargs):
        print("Cell 1545 - Before")
        result = func(*args, **kwargs)
        print("Cell 1545 - After")
        return result
    return wrapper

@decorator_1545
def greet_1545():
    print("Hello from Cell 1545")

greet_1545()
Cell 1545 - Before
Hello from Cell 1545
Cell 1545 - After
# Cell 1546 - decorators

def decorator_1546(func):
    def wrapper(*args, **kwargs):
        print("Cell 1546 - Before")
        result = func(*args, **kwargs)
        print("Cell 1546 - After")
        return result
    return wrapper

@decorator_1546
def greet_1546():
    print("Hello from Cell 1546")

greet_1546()
Cell 1546 - Before
Hello from Cell 1546
Cell 1546 - After
# Cell 1547 - decorators

def decorator_1547(func):
    def wrapper(*args, **kwargs):
        print("Cell 1547 - Before")
        result = func(*args, **kwargs)
        print("Cell 1547 - After")
        return result
    return wrapper

@decorator_1547
def greet_1547():
    print("Hello from Cell 1547")

greet_1547()
Cell 1547 - Before
Hello from Cell 1547
Cell 1547 - After
# Cell 1548 - decorators

def decorator_1548(func):
    def wrapper(*args, **kwargs):
        print("Cell 1548 - Before")
        result = func(*args, **kwargs)
        print("Cell 1548 - After")
        return result
    return wrapper

@decorator_1548
def greet_1548():
    print("Hello from Cell 1548")

greet_1548()
Cell 1548 - Before
Hello from Cell 1548
Cell 1548 - After
# Cell 1549 - decorators

def decorator_1549(func):
    def wrapper(*args, **kwargs):
        print("Cell 1549 - Before")
        result = func(*args, **kwargs)
        print("Cell 1549 - After")
        return result
    return wrapper

@decorator_1549
def greet_1549():
    print("Hello from Cell 1549")

greet_1549()
Cell 1549 - Before
Hello from Cell 1549
Cell 1549 - After
# Cell 1550 - decorators

def decorator_1550(func):
    def wrapper(*args, **kwargs):
        print("Cell 1550 - Before")
        result = func(*args, **kwargs)
        print("Cell 1550 - After")
        return result
    return wrapper

@decorator_1550
def greet_1550():
    print("Hello from Cell 1550")

greet_1550()
Cell 1550 - Before
Hello from Cell 1550
Cell 1550 - After
# Cell 1551 - decorators

def decorator_1551(func):
    def wrapper(*args, **kwargs):
        print("Cell 1551 - Before")
        result = func(*args, **kwargs)
        print("Cell 1551 - After")
        return result
    return wrapper

@decorator_1551
def greet_1551():
    print("Hello from Cell 1551")

greet_1551()
Cell 1551 - Before
Hello from Cell 1551
Cell 1551 - After
# Cell 1552 - decorators

def decorator_1552(func):
    def wrapper(*args, **kwargs):
        print("Cell 1552 - Before")
        result = func(*args, **kwargs)
        print("Cell 1552 - After")
        return result
    return wrapper

@decorator_1552
def greet_1552():
    print("Hello from Cell 1552")

greet_1552()
Cell 1552 - Before
Hello from Cell 1552
Cell 1552 - After
# Cell 1553 - decorators

def decorator_1553(func):
    def wrapper(*args, **kwargs):
        print("Cell 1553 - Before")
        result = func(*args, **kwargs)
        print("Cell 1553 - After")
        return result
    return wrapper

@decorator_1553
def greet_1553():
    print("Hello from Cell 1553")

greet_1553()
Cell 1553 - Before
Hello from Cell 1553
Cell 1553 - After
# Cell 1554 - decorators

def decorator_1554(func):
    def wrapper(*args, **kwargs):
        print("Cell 1554 - Before")
        result = func(*args, **kwargs)
        print("Cell 1554 - After")
        return result
    return wrapper

@decorator_1554
def greet_1554():
    print("Hello from Cell 1554")

greet_1554()
Cell 1554 - Before
Hello from Cell 1554
Cell 1554 - After
# Cell 1555 - decorators

def decorator_1555(func):
    def wrapper(*args, **kwargs):
        print("Cell 1555 - Before")
        result = func(*args, **kwargs)
        print("Cell 1555 - After")
        return result
    return wrapper

@decorator_1555
def greet_1555():
    print("Hello from Cell 1555")

greet_1555()
Cell 1555 - Before
Hello from Cell 1555
Cell 1555 - After
# Cell 1556 - decorators

def decorator_1556(func):
    def wrapper(*args, **kwargs):
        print("Cell 1556 - Before")
        result = func(*args, **kwargs)
        print("Cell 1556 - After")
        return result
    return wrapper

@decorator_1556
def greet_1556():
    print("Hello from Cell 1556")

greet_1556()
Cell 1556 - Before
Hello from Cell 1556
Cell 1556 - After
# Cell 1557 - decorators

def decorator_1557(func):
    def wrapper(*args, **kwargs):
        print("Cell 1557 - Before")
        result = func(*args, **kwargs)
        print("Cell 1557 - After")
        return result
    return wrapper

@decorator_1557
def greet_1557():
    print("Hello from Cell 1557")

greet_1557()
Cell 1557 - Before
Hello from Cell 1557
Cell 1557 - After
# Cell 1558 - decorators

def decorator_1558(func):
    def wrapper(*args, **kwargs):
        print("Cell 1558 - Before")
        result = func(*args, **kwargs)
        print("Cell 1558 - After")
        return result
    return wrapper

@decorator_1558
def greet_1558():
    print("Hello from Cell 1558")

greet_1558()
Cell 1558 - Before
Hello from Cell 1558
Cell 1558 - After
# Cell 1559 - decorators

def decorator_1559(func):
    def wrapper(*args, **kwargs):
        print("Cell 1559 - Before")
        result = func(*args, **kwargs)
        print("Cell 1559 - After")
        return result
    return wrapper

@decorator_1559
def greet_1559():
    print("Hello from Cell 1559")

greet_1559()
Cell 1559 - Before
Hello from Cell 1559
Cell 1559 - After
# Cell 1560 - decorators

def decorator_1560(func):
    def wrapper(*args, **kwargs):
        print("Cell 1560 - Before")
        result = func(*args, **kwargs)
        print("Cell 1560 - After")
        return result
    return wrapper

@decorator_1560
def greet_1560():
    print("Hello from Cell 1560")

greet_1560()
Cell 1560 - Before
Hello from Cell 1560
Cell 1560 - After
# Cell 1561 - decorators

def decorator_1561(func):
    def wrapper(*args, **kwargs):
        print("Cell 1561 - Before")
        result = func(*args, **kwargs)
        print("Cell 1561 - After")
        return result
    return wrapper

@decorator_1561
def greet_1561():
    print("Hello from Cell 1561")

greet_1561()
Cell 1561 - Before
Hello from Cell 1561
Cell 1561 - After
# Cell 1562 - decorators

def decorator_1562(func):
    def wrapper(*args, **kwargs):
        print("Cell 1562 - Before")
        result = func(*args, **kwargs)
        print("Cell 1562 - After")
        return result
    return wrapper

@decorator_1562
def greet_1562():
    print("Hello from Cell 1562")

greet_1562()
Cell 1562 - Before
Hello from Cell 1562
Cell 1562 - After
# Cell 1563 - decorators

def decorator_1563(func):
    def wrapper(*args, **kwargs):
        print("Cell 1563 - Before")
        result = func(*args, **kwargs)
        print("Cell 1563 - After")
        return result
    return wrapper

@decorator_1563
def greet_1563():
    print("Hello from Cell 1563")

greet_1563()
Cell 1563 - Before
Hello from Cell 1563
Cell 1563 - After
# Cell 1564 - decorators

def decorator_1564(func):
    def wrapper(*args, **kwargs):
        print("Cell 1564 - Before")
        result = func(*args, **kwargs)
        print("Cell 1564 - After")
        return result
    return wrapper

@decorator_1564
def greet_1564():
    print("Hello from Cell 1564")

greet_1564()
Cell 1564 - Before
Hello from Cell 1564
Cell 1564 - After
# Cell 1565 - decorators

def decorator_1565(func):
    def wrapper(*args, **kwargs):
        print("Cell 1565 - Before")
        result = func(*args, **kwargs)
        print("Cell 1565 - After")
        return result
    return wrapper

@decorator_1565
def greet_1565():
    print("Hello from Cell 1565")

greet_1565()
Cell 1565 - Before
Hello from Cell 1565
Cell 1565 - After
# Cell 1566 - decorators

def decorator_1566(func):
    def wrapper(*args, **kwargs):
        print("Cell 1566 - Before")
        result = func(*args, **kwargs)
        print("Cell 1566 - After")
        return result
    return wrapper

@decorator_1566
def greet_1566():
    print("Hello from Cell 1566")

greet_1566()
Cell 1566 - Before
Hello from Cell 1566
Cell 1566 - After
# Cell 1567 - decorators

def decorator_1567(func):
    def wrapper(*args, **kwargs):
        print("Cell 1567 - Before")
        result = func(*args, **kwargs)
        print("Cell 1567 - After")
        return result
    return wrapper

@decorator_1567
def greet_1567():
    print("Hello from Cell 1567")

greet_1567()
Cell 1567 - Before
Hello from Cell 1567
Cell 1567 - After
# Cell 1568 - decorators

def decorator_1568(func):
    def wrapper(*args, **kwargs):
        print("Cell 1568 - Before")
        result = func(*args, **kwargs)
        print("Cell 1568 - After")
        return result
    return wrapper

@decorator_1568
def greet_1568():
    print("Hello from Cell 1568")

greet_1568()
Cell 1568 - Before
Hello from Cell 1568
Cell 1568 - After
# Cell 1569 - decorators

def decorator_1569(func):
    def wrapper(*args, **kwargs):
        print("Cell 1569 - Before")
        result = func(*args, **kwargs)
        print("Cell 1569 - After")
        return result
    return wrapper

@decorator_1569
def greet_1569():
    print("Hello from Cell 1569")

greet_1569()
Cell 1569 - Before
Hello from Cell 1569
Cell 1569 - After
# Cell 1570 - decorators

def decorator_1570(func):
    def wrapper(*args, **kwargs):
        print("Cell 1570 - Before")
        result = func(*args, **kwargs)
        print("Cell 1570 - After")
        return result
    return wrapper

@decorator_1570
def greet_1570():
    print("Hello from Cell 1570")

greet_1570()
Cell 1570 - Before
Hello from Cell 1570
Cell 1570 - After
# Cell 1571 - decorators

def decorator_1571(func):
    def wrapper(*args, **kwargs):
        print("Cell 1571 - Before")
        result = func(*args, **kwargs)
        print("Cell 1571 - After")
        return result
    return wrapper

@decorator_1571
def greet_1571():
    print("Hello from Cell 1571")

greet_1571()
Cell 1571 - Before
Hello from Cell 1571
Cell 1571 - After
# Cell 1572 - decorators

def decorator_1572(func):
    def wrapper(*args, **kwargs):
        print("Cell 1572 - Before")
        result = func(*args, **kwargs)
        print("Cell 1572 - After")
        return result
    return wrapper

@decorator_1572
def greet_1572():
    print("Hello from Cell 1572")

greet_1572()
Cell 1572 - Before
Hello from Cell 1572
Cell 1572 - After
# Cell 1573 - decorators

def decorator_1573(func):
    def wrapper(*args, **kwargs):
        print("Cell 1573 - Before")
        result = func(*args, **kwargs)
        print("Cell 1573 - After")
        return result
    return wrapper

@decorator_1573
def greet_1573():
    print("Hello from Cell 1573")

greet_1573()
Cell 1573 - Before
Hello from Cell 1573
Cell 1573 - After
# Cell 1574 - decorators

def decorator_1574(func):
    def wrapper(*args, **kwargs):
        print("Cell 1574 - Before")
        result = func(*args, **kwargs)
        print("Cell 1574 - After")
        return result
    return wrapper

@decorator_1574
def greet_1574():
    print("Hello from Cell 1574")

greet_1574()
Cell 1574 - Before
Hello from Cell 1574
Cell 1574 - After
# Cell 1575 - decorators

def decorator_1575(func):
    def wrapper(*args, **kwargs):
        print("Cell 1575 - Before")
        result = func(*args, **kwargs)
        print("Cell 1575 - After")
        return result
    return wrapper

@decorator_1575
def greet_1575():
    print("Hello from Cell 1575")

greet_1575()
Cell 1575 - Before
Hello from Cell 1575
Cell 1575 - After
# Cell 1576 - decorators

def decorator_1576(func):
    def wrapper(*args, **kwargs):
        print("Cell 1576 - Before")
        result = func(*args, **kwargs)
        print("Cell 1576 - After")
        return result
    return wrapper

@decorator_1576
def greet_1576():
    print("Hello from Cell 1576")

greet_1576()
Cell 1576 - Before
Hello from Cell 1576
Cell 1576 - After
# Cell 1577 - decorators

def decorator_1577(func):
    def wrapper(*args, **kwargs):
        print("Cell 1577 - Before")
        result = func(*args, **kwargs)
        print("Cell 1577 - After")
        return result
    return wrapper

@decorator_1577
def greet_1577():
    print("Hello from Cell 1577")

greet_1577()
Cell 1577 - Before
Hello from Cell 1577
Cell 1577 - After
# Cell 1578 - decorators

def decorator_1578(func):
    def wrapper(*args, **kwargs):
        print("Cell 1578 - Before")
        result = func(*args, **kwargs)
        print("Cell 1578 - After")
        return result
    return wrapper

@decorator_1578
def greet_1578():
    print("Hello from Cell 1578")

greet_1578()
Cell 1578 - Before
Hello from Cell 1578
Cell 1578 - After
# Cell 1579 - decorators

def decorator_1579(func):
    def wrapper(*args, **kwargs):
        print("Cell 1579 - Before")
        result = func(*args, **kwargs)
        print("Cell 1579 - After")
        return result
    return wrapper

@decorator_1579
def greet_1579():
    print("Hello from Cell 1579")

greet_1579()
Cell 1579 - Before
Hello from Cell 1579
Cell 1579 - After
# Cell 1580 - decorators

def decorator_1580(func):
    def wrapper(*args, **kwargs):
        print("Cell 1580 - Before")
        result = func(*args, **kwargs)
        print("Cell 1580 - After")
        return result
    return wrapper

@decorator_1580
def greet_1580():
    print("Hello from Cell 1580")

greet_1580()
Cell 1580 - Before
Hello from Cell 1580
Cell 1580 - After
# Cell 1581 - decorators

def decorator_1581(func):
    def wrapper(*args, **kwargs):
        print("Cell 1581 - Before")
        result = func(*args, **kwargs)
        print("Cell 1581 - After")
        return result
    return wrapper

@decorator_1581
def greet_1581():
    print("Hello from Cell 1581")

greet_1581()
Cell 1581 - Before
Hello from Cell 1581
Cell 1581 - After
# Cell 1582 - decorators

def decorator_1582(func):
    def wrapper(*args, **kwargs):
        print("Cell 1582 - Before")
        result = func(*args, **kwargs)
        print("Cell 1582 - After")
        return result
    return wrapper

@decorator_1582
def greet_1582():
    print("Hello from Cell 1582")

greet_1582()
Cell 1582 - Before
Hello from Cell 1582
Cell 1582 - After
# Cell 1583 - decorators

def decorator_1583(func):
    def wrapper(*args, **kwargs):
        print("Cell 1583 - Before")
        result = func(*args, **kwargs)
        print("Cell 1583 - After")
        return result
    return wrapper

@decorator_1583
def greet_1583():
    print("Hello from Cell 1583")

greet_1583()
Cell 1583 - Before
Hello from Cell 1583
Cell 1583 - After
# Cell 1584 - decorators

def decorator_1584(func):
    def wrapper(*args, **kwargs):
        print("Cell 1584 - Before")
        result = func(*args, **kwargs)
        print("Cell 1584 - After")
        return result
    return wrapper

@decorator_1584
def greet_1584():
    print("Hello from Cell 1584")

greet_1584()
Cell 1584 - Before
Hello from Cell 1584
Cell 1584 - After
# Cell 1585 - decorators

def decorator_1585(func):
    def wrapper(*args, **kwargs):
        print("Cell 1585 - Before")
        result = func(*args, **kwargs)
        print("Cell 1585 - After")
        return result
    return wrapper

@decorator_1585
def greet_1585():
    print("Hello from Cell 1585")

greet_1585()
Cell 1585 - Before
Hello from Cell 1585
Cell 1585 - After
# Cell 1586 - decorators

def decorator_1586(func):
    def wrapper(*args, **kwargs):
        print("Cell 1586 - Before")
        result = func(*args, **kwargs)
        print("Cell 1586 - After")
        return result
    return wrapper

@decorator_1586
def greet_1586():
    print("Hello from Cell 1586")

greet_1586()
Cell 1586 - Before
Hello from Cell 1586
Cell 1586 - After
# Cell 1587 - decorators

def decorator_1587(func):
    def wrapper(*args, **kwargs):
        print("Cell 1587 - Before")
        result = func(*args, **kwargs)
        print("Cell 1587 - After")
        return result
    return wrapper

@decorator_1587
def greet_1587():
    print("Hello from Cell 1587")

greet_1587()
Cell 1587 - Before
Hello from Cell 1587
Cell 1587 - After
# Cell 1588 - decorators

def decorator_1588(func):
    def wrapper(*args, **kwargs):
        print("Cell 1588 - Before")
        result = func(*args, **kwargs)
        print("Cell 1588 - After")
        return result
    return wrapper

@decorator_1588
def greet_1588():
    print("Hello from Cell 1588")

greet_1588()
Cell 1588 - Before
Hello from Cell 1588
Cell 1588 - After
# Cell 1589 - decorators

def decorator_1589(func):
    def wrapper(*args, **kwargs):
        print("Cell 1589 - Before")
        result = func(*args, **kwargs)
        print("Cell 1589 - After")
        return result
    return wrapper

@decorator_1589
def greet_1589():
    print("Hello from Cell 1589")

greet_1589()
Cell 1589 - Before
Hello from Cell 1589
Cell 1589 - After
# Cell 1590 - decorators

def decorator_1590(func):
    def wrapper(*args, **kwargs):
        print("Cell 1590 - Before")
        result = func(*args, **kwargs)
        print("Cell 1590 - After")
        return result
    return wrapper

@decorator_1590
def greet_1590():
    print("Hello from Cell 1590")

greet_1590()
Cell 1590 - Before
Hello from Cell 1590
Cell 1590 - After
# Cell 1591 - decorators

def decorator_1591(func):
    def wrapper(*args, **kwargs):
        print("Cell 1591 - Before")
        result = func(*args, **kwargs)
        print("Cell 1591 - After")
        return result
    return wrapper

@decorator_1591
def greet_1591():
    print("Hello from Cell 1591")

greet_1591()
Cell 1591 - Before
Hello from Cell 1591
Cell 1591 - After
# Cell 1592 - decorators

def decorator_1592(func):
    def wrapper(*args, **kwargs):
        print("Cell 1592 - Before")
        result = func(*args, **kwargs)
        print("Cell 1592 - After")
        return result
    return wrapper

@decorator_1592
def greet_1592():
    print("Hello from Cell 1592")

greet_1592()
Cell 1592 - Before
Hello from Cell 1592
Cell 1592 - After
# Cell 1593 - decorators

def decorator_1593(func):
    def wrapper(*args, **kwargs):
        print("Cell 1593 - Before")
        result = func(*args, **kwargs)
        print("Cell 1593 - After")
        return result
    return wrapper

@decorator_1593
def greet_1593():
    print("Hello from Cell 1593")

greet_1593()
Cell 1593 - Before
Hello from Cell 1593
Cell 1593 - After
# Cell 1594 - decorators

def decorator_1594(func):
    def wrapper(*args, **kwargs):
        print("Cell 1594 - Before")
        result = func(*args, **kwargs)
        print("Cell 1594 - After")
        return result
    return wrapper

@decorator_1594
def greet_1594():
    print("Hello from Cell 1594")

greet_1594()
Cell 1594 - Before
Hello from Cell 1594
Cell 1594 - After
# Cell 1595 - decorators

def decorator_1595(func):
    def wrapper(*args, **kwargs):
        print("Cell 1595 - Before")
        result = func(*args, **kwargs)
        print("Cell 1595 - After")
        return result
    return wrapper

@decorator_1595
def greet_1595():
    print("Hello from Cell 1595")

greet_1595()
Cell 1595 - Before
Hello from Cell 1595
Cell 1595 - After
# Cell 1596 - decorators

def decorator_1596(func):
    def wrapper(*args, **kwargs):
        print("Cell 1596 - Before")
        result = func(*args, **kwargs)
        print("Cell 1596 - After")
        return result
    return wrapper

@decorator_1596
def greet_1596():
    print("Hello from Cell 1596")

greet_1596()
Cell 1596 - Before
Hello from Cell 1596
Cell 1596 - After
# Cell 1597 - decorators

def decorator_1597(func):
    def wrapper(*args, **kwargs):
        print("Cell 1597 - Before")
        result = func(*args, **kwargs)
        print("Cell 1597 - After")
        return result
    return wrapper

@decorator_1597
def greet_1597():
    print("Hello from Cell 1597")

greet_1597()
Cell 1597 - Before
Hello from Cell 1597
Cell 1597 - After
# Cell 1598 - decorators

def decorator_1598(func):
    def wrapper(*args, **kwargs):
        print("Cell 1598 - Before")
        result = func(*args, **kwargs)
        print("Cell 1598 - After")
        return result
    return wrapper

@decorator_1598
def greet_1598():
    print("Hello from Cell 1598")

greet_1598()
Cell 1598 - Before
Hello from Cell 1598
Cell 1598 - After
# Cell 1599 - decorators

def decorator_1599(func):
    def wrapper(*args, **kwargs):
        print("Cell 1599 - Before")
        result = func(*args, **kwargs)
        print("Cell 1599 - After")
        return result
    return wrapper

@decorator_1599
def greet_1599():
    print("Hello from Cell 1599")

greet_1599()
Cell 1599 - Before
Hello from Cell 1599
Cell 1599 - After
# Cell 1600 - decorators

def decorator_1600(func):
    def wrapper(*args, **kwargs):
        print("Cell 1600 - Before")
        result = func(*args, **kwargs)
        print("Cell 1600 - After")
        return result
    return wrapper

@decorator_1600
def greet_1600():
    print("Hello from Cell 1600")

greet_1600()
Cell 1600 - Before
Hello from Cell 1600
Cell 1600 - After
# Cell 1601 - regular expressions

import re

text_1601 = "Cell 1601 has numbers 12345 and letters abcde"
pattern_1601 = r"[0-9]+"
matches_1601 = re.findall(pattern_1601, text_1601)

print("Cell 1601 - regular expressions")
print("Text:", text_1601)
print("Matches:", matches_1601)
Cell 1601 - regular expressions
Text: Cell 1601 has numbers 12345 and letters abcde
Matches: ['1601', '12345']
# Cell 1602 - regular expressions

import re

text_1602 = "Cell 1602 has numbers 12345 and letters abcde"
pattern_1602 = r"[0-9]+"
matches_1602 = re.findall(pattern_1602, text_1602)

print("Cell 1602 - regular expressions")
print("Text:", text_1602)
print("Matches:", matches_1602)
Cell 1602 - regular expressions
Text: Cell 1602 has numbers 12345 and letters abcde
Matches: ['1602', '12345']
# Cell 1603 - regular expressions

import re

text_1603 = "Cell 1603 has numbers 12345 and letters abcde"
pattern_1603 = r"[0-9]+"
matches_1603 = re.findall(pattern_1603, text_1603)

print("Cell 1603 - regular expressions")
print("Text:", text_1603)
print("Matches:", matches_1603)
Cell 1603 - regular expressions
Text: Cell 1603 has numbers 12345 and letters abcde
Matches: ['1603', '12345']
# Cell 1604 - regular expressions

import re

text_1604 = "Cell 1604 has numbers 12345 and letters abcde"
pattern_1604 = r"[0-9]+"
matches_1604 = re.findall(pattern_1604, text_1604)

print("Cell 1604 - regular expressions")
print("Text:", text_1604)
print("Matches:", matches_1604)
Cell 1604 - regular expressions
Text: Cell 1604 has numbers 12345 and letters abcde
Matches: ['1604', '12345']
# Cell 1605 - regular expressions

import re

text_1605 = "Cell 1605 has numbers 12345 and letters abcde"
pattern_1605 = r"[0-9]+"
matches_1605 = re.findall(pattern_1605, text_1605)

print("Cell 1605 - regular expressions")
print("Text:", text_1605)
print("Matches:", matches_1605)
Cell 1605 - regular expressions
Text: Cell 1605 has numbers 12345 and letters abcde
Matches: ['1605', '12345']
# Cell 1606 - regular expressions

import re

text_1606 = "Cell 1606 has numbers 12345 and letters abcde"
pattern_1606 = r"[0-9]+"
matches_1606 = re.findall(pattern_1606, text_1606)

print("Cell 1606 - regular expressions")
print("Text:", text_1606)
print("Matches:", matches_1606)
Cell 1606 - regular expressions
Text: Cell 1606 has numbers 12345 and letters abcde
Matches: ['1606', '12345']
# Cell 1607 - regular expressions

import re

text_1607 = "Cell 1607 has numbers 12345 and letters abcde"
pattern_1607 = r"[0-9]+"
matches_1607 = re.findall(pattern_1607, text_1607)

print("Cell 1607 - regular expressions")
print("Text:", text_1607)
print("Matches:", matches_1607)
Cell 1607 - regular expressions
Text: Cell 1607 has numbers 12345 and letters abcde
Matches: ['1607', '12345']
# Cell 1608 - regular expressions

import re

text_1608 = "Cell 1608 has numbers 12345 and letters abcde"
pattern_1608 = r"[0-9]+"
matches_1608 = re.findall(pattern_1608, text_1608)

print("Cell 1608 - regular expressions")
print("Text:", text_1608)
print("Matches:", matches_1608)
Cell 1608 - regular expressions
Text: Cell 1608 has numbers 12345 and letters abcde
Matches: ['1608', '12345']
# Cell 1609 - regular expressions

import re

text_1609 = "Cell 1609 has numbers 12345 and letters abcde"
pattern_1609 = r"[0-9]+"
matches_1609 = re.findall(pattern_1609, text_1609)

print("Cell 1609 - regular expressions")
print("Text:", text_1609)
print("Matches:", matches_1609)
Cell 1609 - regular expressions
Text: Cell 1609 has numbers 12345 and letters abcde
Matches: ['1609', '12345']
# Cell 1610 - regular expressions

import re

text_1610 = "Cell 1610 has numbers 12345 and letters abcde"
pattern_1610 = r"[0-9]+"
matches_1610 = re.findall(pattern_1610, text_1610)

print("Cell 1610 - regular expressions")
print("Text:", text_1610)
print("Matches:", matches_1610)
Cell 1610 - regular expressions
Text: Cell 1610 has numbers 12345 and letters abcde
Matches: ['1610', '12345']
# Cell 1611 - regular expressions

import re

text_1611 = "Cell 1611 has numbers 12345 and letters abcde"
pattern_1611 = r"[0-9]+"
matches_1611 = re.findall(pattern_1611, text_1611)

print("Cell 1611 - regular expressions")
print("Text:", text_1611)
print("Matches:", matches_1611)
Cell 1611 - regular expressions
Text: Cell 1611 has numbers 12345 and letters abcde
Matches: ['1611', '12345']
# Cell 1612 - regular expressions

import re

text_1612 = "Cell 1612 has numbers 12345 and letters abcde"
pattern_1612 = r"[0-9]+"
matches_1612 = re.findall(pattern_1612, text_1612)

print("Cell 1612 - regular expressions")
print("Text:", text_1612)
print("Matches:", matches_1612)
Cell 1612 - regular expressions
Text: Cell 1612 has numbers 12345 and letters abcde
Matches: ['1612', '12345']
# Cell 1613 - regular expressions

import re

text_1613 = "Cell 1613 has numbers 12345 and letters abcde"
pattern_1613 = r"[0-9]+"
matches_1613 = re.findall(pattern_1613, text_1613)

print("Cell 1613 - regular expressions")
print("Text:", text_1613)
print("Matches:", matches_1613)
Cell 1613 - regular expressions
Text: Cell 1613 has numbers 12345 and letters abcde
Matches: ['1613', '12345']
# Cell 1614 - regular expressions

import re

text_1614 = "Cell 1614 has numbers 12345 and letters abcde"
pattern_1614 = r"[0-9]+"
matches_1614 = re.findall(pattern_1614, text_1614)

print("Cell 1614 - regular expressions")
print("Text:", text_1614)
print("Matches:", matches_1614)
Cell 1614 - regular expressions
Text: Cell 1614 has numbers 12345 and letters abcde
Matches: ['1614', '12345']
# Cell 1615 - regular expressions

import re

text_1615 = "Cell 1615 has numbers 12345 and letters abcde"
pattern_1615 = r"[0-9]+"
matches_1615 = re.findall(pattern_1615, text_1615)

print("Cell 1615 - regular expressions")
print("Text:", text_1615)
print("Matches:", matches_1615)
Cell 1615 - regular expressions
Text: Cell 1615 has numbers 12345 and letters abcde
Matches: ['1615', '12345']
# Cell 1616 - regular expressions

import re

text_1616 = "Cell 1616 has numbers 12345 and letters abcde"
pattern_1616 = r"[0-9]+"
matches_1616 = re.findall(pattern_1616, text_1616)

print("Cell 1616 - regular expressions")
print("Text:", text_1616)
print("Matches:", matches_1616)
Cell 1616 - regular expressions
Text: Cell 1616 has numbers 12345 and letters abcde
Matches: ['1616', '12345']
# Cell 1617 - regular expressions

import re

text_1617 = "Cell 1617 has numbers 12345 and letters abcde"
pattern_1617 = r"[0-9]+"
matches_1617 = re.findall(pattern_1617, text_1617)

print("Cell 1617 - regular expressions")
print("Text:", text_1617)
print("Matches:", matches_1617)
Cell 1617 - regular expressions
Text: Cell 1617 has numbers 12345 and letters abcde
Matches: ['1617', '12345']
# Cell 1618 - regular expressions

import re

text_1618 = "Cell 1618 has numbers 12345 and letters abcde"
pattern_1618 = r"[0-9]+"
matches_1618 = re.findall(pattern_1618, text_1618)

print("Cell 1618 - regular expressions")
print("Text:", text_1618)
print("Matches:", matches_1618)
Cell 1618 - regular expressions
Text: Cell 1618 has numbers 12345 and letters abcde
Matches: ['1618', '12345']
# Cell 1619 - regular expressions

import re

text_1619 = "Cell 1619 has numbers 12345 and letters abcde"
pattern_1619 = r"[0-9]+"
matches_1619 = re.findall(pattern_1619, text_1619)

print("Cell 1619 - regular expressions")
print("Text:", text_1619)
print("Matches:", matches_1619)
Cell 1619 - regular expressions
Text: Cell 1619 has numbers 12345 and letters abcde
Matches: ['1619', '12345']
# Cell 1620 - regular expressions

import re

text_1620 = "Cell 1620 has numbers 12345 and letters abcde"
pattern_1620 = r"[0-9]+"
matches_1620 = re.findall(pattern_1620, text_1620)

print("Cell 1620 - regular expressions")
print("Text:", text_1620)
print("Matches:", matches_1620)
Cell 1620 - regular expressions
Text: Cell 1620 has numbers 12345 and letters abcde
Matches: ['1620', '12345']
# Cell 1621 - regular expressions

import re

text_1621 = "Cell 1621 has numbers 12345 and letters abcde"
pattern_1621 = r"[0-9]+"
matches_1621 = re.findall(pattern_1621, text_1621)

print("Cell 1621 - regular expressions")
print("Text:", text_1621)
print("Matches:", matches_1621)
Cell 1621 - regular expressions
Text: Cell 1621 has numbers 12345 and letters abcde
Matches: ['1621', '12345']
# Cell 1622 - regular expressions

import re

text_1622 = "Cell 1622 has numbers 12345 and letters abcde"
pattern_1622 = r"[0-9]+"
matches_1622 = re.findall(pattern_1622, text_1622)

print("Cell 1622 - regular expressions")
print("Text:", text_1622)
print("Matches:", matches_1622)
Cell 1622 - regular expressions
Text: Cell 1622 has numbers 12345 and letters abcde
Matches: ['1622', '12345']
# Cell 1623 - regular expressions

import re

text_1623 = "Cell 1623 has numbers 12345 and letters abcde"
pattern_1623 = r"[0-9]+"
matches_1623 = re.findall(pattern_1623, text_1623)

print("Cell 1623 - regular expressions")
print("Text:", text_1623)
print("Matches:", matches_1623)
Cell 1623 - regular expressions
Text: Cell 1623 has numbers 12345 and letters abcde
Matches: ['1623', '12345']
# Cell 1624 - regular expressions

import re

text_1624 = "Cell 1624 has numbers 12345 and letters abcde"
pattern_1624 = r"[0-9]+"
matches_1624 = re.findall(pattern_1624, text_1624)

print("Cell 1624 - regular expressions")
print("Text:", text_1624)
print("Matches:", matches_1624)
Cell 1624 - regular expressions
Text: Cell 1624 has numbers 12345 and letters abcde
Matches: ['1624', '12345']
# Cell 1625 - regular expressions

import re

text_1625 = "Cell 1625 has numbers 12345 and letters abcde"
pattern_1625 = r"[0-9]+"
matches_1625 = re.findall(pattern_1625, text_1625)

print("Cell 1625 - regular expressions")
print("Text:", text_1625)
print("Matches:", matches_1625)
Cell 1625 - regular expressions
Text: Cell 1625 has numbers 12345 and letters abcde
Matches: ['1625', '12345']
# Cell 1626 - regular expressions

import re

text_1626 = "Cell 1626 has numbers 12345 and letters abcde"
pattern_1626 = r"[0-9]+"
matches_1626 = re.findall(pattern_1626, text_1626)

print("Cell 1626 - regular expressions")
print("Text:", text_1626)
print("Matches:", matches_1626)
Cell 1626 - regular expressions
Text: Cell 1626 has numbers 12345 and letters abcde
Matches: ['1626', '12345']
# Cell 1627 - regular expressions

import re

text_1627 = "Cell 1627 has numbers 12345 and letters abcde"
pattern_1627 = r"[0-9]+"
matches_1627 = re.findall(pattern_1627, text_1627)

print("Cell 1627 - regular expressions")
print("Text:", text_1627)
print("Matches:", matches_1627)
Cell 1627 - regular expressions
Text: Cell 1627 has numbers 12345 and letters abcde
Matches: ['1627', '12345']
# Cell 1628 - regular expressions

import re

text_1628 = "Cell 1628 has numbers 12345 and letters abcde"
pattern_1628 = r"[0-9]+"
matches_1628 = re.findall(pattern_1628, text_1628)

print("Cell 1628 - regular expressions")
print("Text:", text_1628)
print("Matches:", matches_1628)
Cell 1628 - regular expressions
Text: Cell 1628 has numbers 12345 and letters abcde
Matches: ['1628', '12345']
# Cell 1629 - regular expressions

import re

text_1629 = "Cell 1629 has numbers 12345 and letters abcde"
pattern_1629 = r"[0-9]+"
matches_1629 = re.findall(pattern_1629, text_1629)

print("Cell 1629 - regular expressions")
print("Text:", text_1629)
print("Matches:", matches_1629)
Cell 1629 - regular expressions
Text: Cell 1629 has numbers 12345 and letters abcde
Matches: ['1629', '12345']
# Cell 1630 - regular expressions

import re

text_1630 = "Cell 1630 has numbers 12345 and letters abcde"
pattern_1630 = r"[0-9]+"
matches_1630 = re.findall(pattern_1630, text_1630)

print("Cell 1630 - regular expressions")
print("Text:", text_1630)
print("Matches:", matches_1630)
Cell 1630 - regular expressions
Text: Cell 1630 has numbers 12345 and letters abcde
Matches: ['1630', '12345']
# Cell 1631 - regular expressions

import re

text_1631 = "Cell 1631 has numbers 12345 and letters abcde"
pattern_1631 = r"[0-9]+"
matches_1631 = re.findall(pattern_1631, text_1631)

print("Cell 1631 - regular expressions")
print("Text:", text_1631)
print("Matches:", matches_1631)
Cell 1631 - regular expressions
Text: Cell 1631 has numbers 12345 and letters abcde
Matches: ['1631', '12345']
# Cell 1632 - regular expressions

import re

text_1632 = "Cell 1632 has numbers 12345 and letters abcde"
pattern_1632 = r"[0-9]+"
matches_1632 = re.findall(pattern_1632, text_1632)

print("Cell 1632 - regular expressions")
print("Text:", text_1632)
print("Matches:", matches_1632)
Cell 1632 - regular expressions
Text: Cell 1632 has numbers 12345 and letters abcde
Matches: ['1632', '12345']
# Cell 1633 - regular expressions

import re

text_1633 = "Cell 1633 has numbers 12345 and letters abcde"
pattern_1633 = r"[0-9]+"
matches_1633 = re.findall(pattern_1633, text_1633)

print("Cell 1633 - regular expressions")
print("Text:", text_1633)
print("Matches:", matches_1633)
Cell 1633 - regular expressions
Text: Cell 1633 has numbers 12345 and letters abcde
Matches: ['1633', '12345']
# Cell 1634 - regular expressions

import re

text_1634 = "Cell 1634 has numbers 12345 and letters abcde"
pattern_1634 = r"[0-9]+"
matches_1634 = re.findall(pattern_1634, text_1634)

print("Cell 1634 - regular expressions")
print("Text:", text_1634)
print("Matches:", matches_1634)
Cell 1634 - regular expressions
Text: Cell 1634 has numbers 12345 and letters abcde
Matches: ['1634', '12345']
# Cell 1635 - regular expressions

import re

text_1635 = "Cell 1635 has numbers 12345 and letters abcde"
pattern_1635 = r"[0-9]+"
matches_1635 = re.findall(pattern_1635, text_1635)

print("Cell 1635 - regular expressions")
print("Text:", text_1635)
print("Matches:", matches_1635)
Cell 1635 - regular expressions
Text: Cell 1635 has numbers 12345 and letters abcde
Matches: ['1635', '12345']
# Cell 1636 - regular expressions

import re

text_1636 = "Cell 1636 has numbers 12345 and letters abcde"
pattern_1636 = r"[0-9]+"
matches_1636 = re.findall(pattern_1636, text_1636)

print("Cell 1636 - regular expressions")
print("Text:", text_1636)
print("Matches:", matches_1636)
Cell 1636 - regular expressions
Text: Cell 1636 has numbers 12345 and letters abcde
Matches: ['1636', '12345']
# Cell 1637 - regular expressions

import re

text_1637 = "Cell 1637 has numbers 12345 and letters abcde"
pattern_1637 = r"[0-9]+"
matches_1637 = re.findall(pattern_1637, text_1637)

print("Cell 1637 - regular expressions")
print("Text:", text_1637)
print("Matches:", matches_1637)
Cell 1637 - regular expressions
Text: Cell 1637 has numbers 12345 and letters abcde
Matches: ['1637', '12345']
# Cell 1638 - regular expressions

import re

text_1638 = "Cell 1638 has numbers 12345 and letters abcde"
pattern_1638 = r"[0-9]+"
matches_1638 = re.findall(pattern_1638, text_1638)

print("Cell 1638 - regular expressions")
print("Text:", text_1638)
print("Matches:", matches_1638)
Cell 1638 - regular expressions
Text: Cell 1638 has numbers 12345 and letters abcde
Matches: ['1638', '12345']
# Cell 1639 - regular expressions

import re

text_1639 = "Cell 1639 has numbers 12345 and letters abcde"
pattern_1639 = r"[0-9]+"
matches_1639 = re.findall(pattern_1639, text_1639)

print("Cell 1639 - regular expressions")
print("Text:", text_1639)
print("Matches:", matches_1639)
Cell 1639 - regular expressions
Text: Cell 1639 has numbers 12345 and letters abcde
Matches: ['1639', '12345']
# Cell 1640 - regular expressions

import re

text_1640 = "Cell 1640 has numbers 12345 and letters abcde"
pattern_1640 = r"[0-9]+"
matches_1640 = re.findall(pattern_1640, text_1640)

print("Cell 1640 - regular expressions")
print("Text:", text_1640)
print("Matches:", matches_1640)
Cell 1640 - regular expressions
Text: Cell 1640 has numbers 12345 and letters abcde
Matches: ['1640', '12345']
# Cell 1641 - regular expressions

import re

text_1641 = "Cell 1641 has numbers 12345 and letters abcde"
pattern_1641 = r"[0-9]+"
matches_1641 = re.findall(pattern_1641, text_1641)

print("Cell 1641 - regular expressions")
print("Text:", text_1641)
print("Matches:", matches_1641)
Cell 1641 - regular expressions
Text: Cell 1641 has numbers 12345 and letters abcde
Matches: ['1641', '12345']
# Cell 1642 - regular expressions

import re

text_1642 = "Cell 1642 has numbers 12345 and letters abcde"
pattern_1642 = r"[0-9]+"
matches_1642 = re.findall(pattern_1642, text_1642)

print("Cell 1642 - regular expressions")
print("Text:", text_1642)
print("Matches:", matches_1642)
Cell 1642 - regular expressions
Text: Cell 1642 has numbers 12345 and letters abcde
Matches: ['1642', '12345']
# Cell 1643 - regular expressions

import re

text_1643 = "Cell 1643 has numbers 12345 and letters abcde"
pattern_1643 = r"[0-9]+"
matches_1643 = re.findall(pattern_1643, text_1643)

print("Cell 1643 - regular expressions")
print("Text:", text_1643)
print("Matches:", matches_1643)
Cell 1643 - regular expressions
Text: Cell 1643 has numbers 12345 and letters abcde
Matches: ['1643', '12345']
# Cell 1644 - regular expressions

import re

text_1644 = "Cell 1644 has numbers 12345 and letters abcde"
pattern_1644 = r"[0-9]+"
matches_1644 = re.findall(pattern_1644, text_1644)

print("Cell 1644 - regular expressions")
print("Text:", text_1644)
print("Matches:", matches_1644)
Cell 1644 - regular expressions
Text: Cell 1644 has numbers 12345 and letters abcde
Matches: ['1644', '12345']
# Cell 1645 - regular expressions

import re

text_1645 = "Cell 1645 has numbers 12345 and letters abcde"
pattern_1645 = r"[0-9]+"
matches_1645 = re.findall(pattern_1645, text_1645)

print("Cell 1645 - regular expressions")
print("Text:", text_1645)
print("Matches:", matches_1645)
Cell 1645 - regular expressions
Text: Cell 1645 has numbers 12345 and letters abcde
Matches: ['1645', '12345']
# Cell 1646 - regular expressions

import re

text_1646 = "Cell 1646 has numbers 12345 and letters abcde"
pattern_1646 = r"[0-9]+"
matches_1646 = re.findall(pattern_1646, text_1646)

print("Cell 1646 - regular expressions")
print("Text:", text_1646)
print("Matches:", matches_1646)
Cell 1646 - regular expressions
Text: Cell 1646 has numbers 12345 and letters abcde
Matches: ['1646', '12345']
# Cell 1647 - regular expressions

import re

text_1647 = "Cell 1647 has numbers 12345 and letters abcde"
pattern_1647 = r"[0-9]+"
matches_1647 = re.findall(pattern_1647, text_1647)

print("Cell 1647 - regular expressions")
print("Text:", text_1647)
print("Matches:", matches_1647)
Cell 1647 - regular expressions
Text: Cell 1647 has numbers 12345 and letters abcde
Matches: ['1647', '12345']
# Cell 1648 - regular expressions

import re

text_1648 = "Cell 1648 has numbers 12345 and letters abcde"
pattern_1648 = r"[0-9]+"
matches_1648 = re.findall(pattern_1648, text_1648)

print("Cell 1648 - regular expressions")
print("Text:", text_1648)
print("Matches:", matches_1648)
Cell 1648 - regular expressions
Text: Cell 1648 has numbers 12345 and letters abcde
Matches: ['1648', '12345']
# Cell 1649 - regular expressions

import re

text_1649 = "Cell 1649 has numbers 12345 and letters abcde"
pattern_1649 = r"[0-9]+"
matches_1649 = re.findall(pattern_1649, text_1649)

print("Cell 1649 - regular expressions")
print("Text:", text_1649)
print("Matches:", matches_1649)
Cell 1649 - regular expressions
Text: Cell 1649 has numbers 12345 and letters abcde
Matches: ['1649', '12345']
# Cell 1650 - regular expressions

import re

text_1650 = "Cell 1650 has numbers 12345 and letters abcde"
pattern_1650 = r"[0-9]+"
matches_1650 = re.findall(pattern_1650, text_1650)

print("Cell 1650 - regular expressions")
print("Text:", text_1650)
print("Matches:", matches_1650)
Cell 1650 - regular expressions
Text: Cell 1650 has numbers 12345 and letters abcde
Matches: ['1650', '12345']
# Cell 1651 - regular expressions

import re

text_1651 = "Cell 1651 has numbers 12345 and letters abcde"
pattern_1651 = r"[0-9]+"
matches_1651 = re.findall(pattern_1651, text_1651)

print("Cell 1651 - regular expressions")
print("Text:", text_1651)
print("Matches:", matches_1651)
Cell 1651 - regular expressions
Text: Cell 1651 has numbers 12345 and letters abcde
Matches: ['1651', '12345']
# Cell 1652 - regular expressions

import re

text_1652 = "Cell 1652 has numbers 12345 and letters abcde"
pattern_1652 = r"[0-9]+"
matches_1652 = re.findall(pattern_1652, text_1652)

print("Cell 1652 - regular expressions")
print("Text:", text_1652)
print("Matches:", matches_1652)
Cell 1652 - regular expressions
Text: Cell 1652 has numbers 12345 and letters abcde
Matches: ['1652', '12345']
# Cell 1653 - regular expressions

import re

text_1653 = "Cell 1653 has numbers 12345 and letters abcde"
pattern_1653 = r"[0-9]+"
matches_1653 = re.findall(pattern_1653, text_1653)

print("Cell 1653 - regular expressions")
print("Text:", text_1653)
print("Matches:", matches_1653)
Cell 1653 - regular expressions
Text: Cell 1653 has numbers 12345 and letters abcde
Matches: ['1653', '12345']
# Cell 1654 - regular expressions

import re

text_1654 = "Cell 1654 has numbers 12345 and letters abcde"
pattern_1654 = r"[0-9]+"
matches_1654 = re.findall(pattern_1654, text_1654)

print("Cell 1654 - regular expressions")
print("Text:", text_1654)
print("Matches:", matches_1654)
Cell 1654 - regular expressions
Text: Cell 1654 has numbers 12345 and letters abcde
Matches: ['1654', '12345']
# Cell 1655 - regular expressions

import re

text_1655 = "Cell 1655 has numbers 12345 and letters abcde"
pattern_1655 = r"[0-9]+"
matches_1655 = re.findall(pattern_1655, text_1655)

print("Cell 1655 - regular expressions")
print("Text:", text_1655)
print("Matches:", matches_1655)
Cell 1655 - regular expressions
Text: Cell 1655 has numbers 12345 and letters abcde
Matches: ['1655', '12345']
# Cell 1656 - regular expressions

import re

text_1656 = "Cell 1656 has numbers 12345 and letters abcde"
pattern_1656 = r"[0-9]+"
matches_1656 = re.findall(pattern_1656, text_1656)

print("Cell 1656 - regular expressions")
print("Text:", text_1656)
print("Matches:", matches_1656)
Cell 1656 - regular expressions
Text: Cell 1656 has numbers 12345 and letters abcde
Matches: ['1656', '12345']
# Cell 1657 - regular expressions

import re

text_1657 = "Cell 1657 has numbers 12345 and letters abcde"
pattern_1657 = r"[0-9]+"
matches_1657 = re.findall(pattern_1657, text_1657)

print("Cell 1657 - regular expressions")
print("Text:", text_1657)
print("Matches:", matches_1657)
Cell 1657 - regular expressions
Text: Cell 1657 has numbers 12345 and letters abcde
Matches: ['1657', '12345']
# Cell 1658 - regular expressions

import re

text_1658 = "Cell 1658 has numbers 12345 and letters abcde"
pattern_1658 = r"[0-9]+"
matches_1658 = re.findall(pattern_1658, text_1658)

print("Cell 1658 - regular expressions")
print("Text:", text_1658)
print("Matches:", matches_1658)
Cell 1658 - regular expressions
Text: Cell 1658 has numbers 12345 and letters abcde
Matches: ['1658', '12345']
# Cell 1659 - regular expressions

import re

text_1659 = "Cell 1659 has numbers 12345 and letters abcde"
pattern_1659 = r"[0-9]+"
matches_1659 = re.findall(pattern_1659, text_1659)

print("Cell 1659 - regular expressions")
print("Text:", text_1659)
print("Matches:", matches_1659)
Cell 1659 - regular expressions
Text: Cell 1659 has numbers 12345 and letters abcde
Matches: ['1659', '12345']
# Cell 1660 - regular expressions

import re

text_1660 = "Cell 1660 has numbers 12345 and letters abcde"
pattern_1660 = r"[0-9]+"
matches_1660 = re.findall(pattern_1660, text_1660)

print("Cell 1660 - regular expressions")
print("Text:", text_1660)
print("Matches:", matches_1660)
Cell 1660 - regular expressions
Text: Cell 1660 has numbers 12345 and letters abcde
Matches: ['1660', '12345']
# Cell 1661 - regular expressions

import re

text_1661 = "Cell 1661 has numbers 12345 and letters abcde"
pattern_1661 = r"[0-9]+"
matches_1661 = re.findall(pattern_1661, text_1661)

print("Cell 1661 - regular expressions")
print("Text:", text_1661)
print("Matches:", matches_1661)
Cell 1661 - regular expressions
Text: Cell 1661 has numbers 12345 and letters abcde
Matches: ['1661', '12345']
# Cell 1662 - regular expressions

import re

text_1662 = "Cell 1662 has numbers 12345 and letters abcde"
pattern_1662 = r"[0-9]+"
matches_1662 = re.findall(pattern_1662, text_1662)

print("Cell 1662 - regular expressions")
print("Text:", text_1662)
print("Matches:", matches_1662)
Cell 1662 - regular expressions
Text: Cell 1662 has numbers 12345 and letters abcde
Matches: ['1662', '12345']
# Cell 1663 - regular expressions

import re

text_1663 = "Cell 1663 has numbers 12345 and letters abcde"
pattern_1663 = r"[0-9]+"
matches_1663 = re.findall(pattern_1663, text_1663)

print("Cell 1663 - regular expressions")
print("Text:", text_1663)
print("Matches:", matches_1663)
Cell 1663 - regular expressions
Text: Cell 1663 has numbers 12345 and letters abcde
Matches: ['1663', '12345']
# Cell 1664 - regular expressions

import re

text_1664 = "Cell 1664 has numbers 12345 and letters abcde"
pattern_1664 = r"[0-9]+"
matches_1664 = re.findall(pattern_1664, text_1664)

print("Cell 1664 - regular expressions")
print("Text:", text_1664)
print("Matches:", matches_1664)
Cell 1664 - regular expressions
Text: Cell 1664 has numbers 12345 and letters abcde
Matches: ['1664', '12345']
# Cell 1665 - regular expressions

import re

text_1665 = "Cell 1665 has numbers 12345 and letters abcde"
pattern_1665 = r"[0-9]+"
matches_1665 = re.findall(pattern_1665, text_1665)

print("Cell 1665 - regular expressions")
print("Text:", text_1665)
print("Matches:", matches_1665)
Cell 1665 - regular expressions
Text: Cell 1665 has numbers 12345 and letters abcde
Matches: ['1665', '12345']
# Cell 1666 - regular expressions

import re

text_1666 = "Cell 1666 has numbers 12345 and letters abcde"
pattern_1666 = r"[0-9]+"
matches_1666 = re.findall(pattern_1666, text_1666)

print("Cell 1666 - regular expressions")
print("Text:", text_1666)
print("Matches:", matches_1666)
Cell 1666 - regular expressions
Text: Cell 1666 has numbers 12345 and letters abcde
Matches: ['1666', '12345']
# Cell 1667 - regular expressions

import re

text_1667 = "Cell 1667 has numbers 12345 and letters abcde"
pattern_1667 = r"[0-9]+"
matches_1667 = re.findall(pattern_1667, text_1667)

print("Cell 1667 - regular expressions")
print("Text:", text_1667)
print("Matches:", matches_1667)
Cell 1667 - regular expressions
Text: Cell 1667 has numbers 12345 and letters abcde
Matches: ['1667', '12345']
# Cell 1668 - regular expressions

import re

text_1668 = "Cell 1668 has numbers 12345 and letters abcde"
pattern_1668 = r"[0-9]+"
matches_1668 = re.findall(pattern_1668, text_1668)

print("Cell 1668 - regular expressions")
print("Text:", text_1668)
print("Matches:", matches_1668)
Cell 1668 - regular expressions
Text: Cell 1668 has numbers 12345 and letters abcde
Matches: ['1668', '12345']
# Cell 1669 - regular expressions

import re

text_1669 = "Cell 1669 has numbers 12345 and letters abcde"
pattern_1669 = r"[0-9]+"
matches_1669 = re.findall(pattern_1669, text_1669)

print("Cell 1669 - regular expressions")
print("Text:", text_1669)
print("Matches:", matches_1669)
Cell 1669 - regular expressions
Text: Cell 1669 has numbers 12345 and letters abcde
Matches: ['1669', '12345']
# Cell 1670 - regular expressions

import re

text_1670 = "Cell 1670 has numbers 12345 and letters abcde"
pattern_1670 = r"[0-9]+"
matches_1670 = re.findall(pattern_1670, text_1670)

print("Cell 1670 - regular expressions")
print("Text:", text_1670)
print("Matches:", matches_1670)
Cell 1670 - regular expressions
Text: Cell 1670 has numbers 12345 and letters abcde
Matches: ['1670', '12345']
# Cell 1671 - regular expressions

import re

text_1671 = "Cell 1671 has numbers 12345 and letters abcde"
pattern_1671 = r"[0-9]+"
matches_1671 = re.findall(pattern_1671, text_1671)

print("Cell 1671 - regular expressions")
print("Text:", text_1671)
print("Matches:", matches_1671)
Cell 1671 - regular expressions
Text: Cell 1671 has numbers 12345 and letters abcde
Matches: ['1671', '12345']
# Cell 1672 - regular expressions

import re

text_1672 = "Cell 1672 has numbers 12345 and letters abcde"
pattern_1672 = r"[0-9]+"
matches_1672 = re.findall(pattern_1672, text_1672)

print("Cell 1672 - regular expressions")
print("Text:", text_1672)
print("Matches:", matches_1672)
Cell 1672 - regular expressions
Text: Cell 1672 has numbers 12345 and letters abcde
Matches: ['1672', '12345']
# Cell 1673 - regular expressions

import re

text_1673 = "Cell 1673 has numbers 12345 and letters abcde"
pattern_1673 = r"[0-9]+"
matches_1673 = re.findall(pattern_1673, text_1673)

print("Cell 1673 - regular expressions")
print("Text:", text_1673)
print("Matches:", matches_1673)
Cell 1673 - regular expressions
Text: Cell 1673 has numbers 12345 and letters abcde
Matches: ['1673', '12345']
# Cell 1674 - regular expressions

import re

text_1674 = "Cell 1674 has numbers 12345 and letters abcde"
pattern_1674 = r"[0-9]+"
matches_1674 = re.findall(pattern_1674, text_1674)

print("Cell 1674 - regular expressions")
print("Text:", text_1674)
print("Matches:", matches_1674)
Cell 1674 - regular expressions
Text: Cell 1674 has numbers 12345 and letters abcde
Matches: ['1674', '12345']
# Cell 1675 - regular expressions

import re

text_1675 = "Cell 1675 has numbers 12345 and letters abcde"
pattern_1675 = r"[0-9]+"
matches_1675 = re.findall(pattern_1675, text_1675)

print("Cell 1675 - regular expressions")
print("Text:", text_1675)
print("Matches:", matches_1675)
Cell 1675 - regular expressions
Text: Cell 1675 has numbers 12345 and letters abcde
Matches: ['1675', '12345']
# Cell 1676 - regular expressions

import re

text_1676 = "Cell 1676 has numbers 12345 and letters abcde"
pattern_1676 = r"[0-9]+"
matches_1676 = re.findall(pattern_1676, text_1676)

print("Cell 1676 - regular expressions")
print("Text:", text_1676)
print("Matches:", matches_1676)
Cell 1676 - regular expressions
Text: Cell 1676 has numbers 12345 and letters abcde
Matches: ['1676', '12345']
# Cell 1677 - regular expressions

import re

text_1677 = "Cell 1677 has numbers 12345 and letters abcde"
pattern_1677 = r"[0-9]+"
matches_1677 = re.findall(pattern_1677, text_1677)

print("Cell 1677 - regular expressions")
print("Text:", text_1677)
print("Matches:", matches_1677)
Cell 1677 - regular expressions
Text: Cell 1677 has numbers 12345 and letters abcde
Matches: ['1677', '12345']
# Cell 1678 - regular expressions

import re

text_1678 = "Cell 1678 has numbers 12345 and letters abcde"
pattern_1678 = r"[0-9]+"
matches_1678 = re.findall(pattern_1678, text_1678)

print("Cell 1678 - regular expressions")
print("Text:", text_1678)
print("Matches:", matches_1678)
Cell 1678 - regular expressions
Text: Cell 1678 has numbers 12345 and letters abcde
Matches: ['1678', '12345']
# Cell 1679 - regular expressions

import re

text_1679 = "Cell 1679 has numbers 12345 and letters abcde"
pattern_1679 = r"[0-9]+"
matches_1679 = re.findall(pattern_1679, text_1679)

print("Cell 1679 - regular expressions")
print("Text:", text_1679)
print("Matches:", matches_1679)
Cell 1679 - regular expressions
Text: Cell 1679 has numbers 12345 and letters abcde
Matches: ['1679', '12345']
# Cell 1680 - regular expressions

import re

text_1680 = "Cell 1680 has numbers 12345 and letters abcde"
pattern_1680 = r"[0-9]+"
matches_1680 = re.findall(pattern_1680, text_1680)

print("Cell 1680 - regular expressions")
print("Text:", text_1680)
print("Matches:", matches_1680)
Cell 1680 - regular expressions
Text: Cell 1680 has numbers 12345 and letters abcde
Matches: ['1680', '12345']
# Cell 1681 - regular expressions

import re

text_1681 = "Cell 1681 has numbers 12345 and letters abcde"
pattern_1681 = r"[0-9]+"
matches_1681 = re.findall(pattern_1681, text_1681)

print("Cell 1681 - regular expressions")
print("Text:", text_1681)
print("Matches:", matches_1681)
Cell 1681 - regular expressions
Text: Cell 1681 has numbers 12345 and letters abcde
Matches: ['1681', '12345']
# Cell 1682 - regular expressions

import re

text_1682 = "Cell 1682 has numbers 12345 and letters abcde"
pattern_1682 = r"[0-9]+"
matches_1682 = re.findall(pattern_1682, text_1682)

print("Cell 1682 - regular expressions")
print("Text:", text_1682)
print("Matches:", matches_1682)
Cell 1682 - regular expressions
Text: Cell 1682 has numbers 12345 and letters abcde
Matches: ['1682', '12345']
# Cell 1683 - regular expressions

import re

text_1683 = "Cell 1683 has numbers 12345 and letters abcde"
pattern_1683 = r"[0-9]+"
matches_1683 = re.findall(pattern_1683, text_1683)

print("Cell 1683 - regular expressions")
print("Text:", text_1683)
print("Matches:", matches_1683)
Cell 1683 - regular expressions
Text: Cell 1683 has numbers 12345 and letters abcde
Matches: ['1683', '12345']
# Cell 1684 - regular expressions

import re

text_1684 = "Cell 1684 has numbers 12345 and letters abcde"
pattern_1684 = r"[0-9]+"
matches_1684 = re.findall(pattern_1684, text_1684)

print("Cell 1684 - regular expressions")
print("Text:", text_1684)
print("Matches:", matches_1684)
Cell 1684 - regular expressions
Text: Cell 1684 has numbers 12345 and letters abcde
Matches: ['1684', '12345']
# Cell 1685 - regular expressions

import re

text_1685 = "Cell 1685 has numbers 12345 and letters abcde"
pattern_1685 = r"[0-9]+"
matches_1685 = re.findall(pattern_1685, text_1685)

print("Cell 1685 - regular expressions")
print("Text:", text_1685)
print("Matches:", matches_1685)
Cell 1685 - regular expressions
Text: Cell 1685 has numbers 12345 and letters abcde
Matches: ['1685', '12345']
# Cell 1686 - regular expressions

import re

text_1686 = "Cell 1686 has numbers 12345 and letters abcde"
pattern_1686 = r"[0-9]+"
matches_1686 = re.findall(pattern_1686, text_1686)

print("Cell 1686 - regular expressions")
print("Text:", text_1686)
print("Matches:", matches_1686)
Cell 1686 - regular expressions
Text: Cell 1686 has numbers 12345 and letters abcde
Matches: ['1686', '12345']
# Cell 1687 - regular expressions

import re

text_1687 = "Cell 1687 has numbers 12345 and letters abcde"
pattern_1687 = r"[0-9]+"
matches_1687 = re.findall(pattern_1687, text_1687)

print("Cell 1687 - regular expressions")
print("Text:", text_1687)
print("Matches:", matches_1687)
Cell 1687 - regular expressions
Text: Cell 1687 has numbers 12345 and letters abcde
Matches: ['1687', '12345']
# Cell 1688 - regular expressions

import re

text_1688 = "Cell 1688 has numbers 12345 and letters abcde"
pattern_1688 = r"[0-9]+"
matches_1688 = re.findall(pattern_1688, text_1688)

print("Cell 1688 - regular expressions")
print("Text:", text_1688)
print("Matches:", matches_1688)
Cell 1688 - regular expressions
Text: Cell 1688 has numbers 12345 and letters abcde
Matches: ['1688', '12345']
# Cell 1689 - regular expressions

import re

text_1689 = "Cell 1689 has numbers 12345 and letters abcde"
pattern_1689 = r"[0-9]+"
matches_1689 = re.findall(pattern_1689, text_1689)

print("Cell 1689 - regular expressions")
print("Text:", text_1689)
print("Matches:", matches_1689)
Cell 1689 - regular expressions
Text: Cell 1689 has numbers 12345 and letters abcde
Matches: ['1689', '12345']
# Cell 1690 - regular expressions

import re

text_1690 = "Cell 1690 has numbers 12345 and letters abcde"
pattern_1690 = r"[0-9]+"
matches_1690 = re.findall(pattern_1690, text_1690)

print("Cell 1690 - regular expressions")
print("Text:", text_1690)
print("Matches:", matches_1690)
Cell 1690 - regular expressions
Text: Cell 1690 has numbers 12345 and letters abcde
Matches: ['1690', '12345']
# Cell 1691 - regular expressions

import re

text_1691 = "Cell 1691 has numbers 12345 and letters abcde"
pattern_1691 = r"[0-9]+"
matches_1691 = re.findall(pattern_1691, text_1691)

print("Cell 1691 - regular expressions")
print("Text:", text_1691)
print("Matches:", matches_1691)
Cell 1691 - regular expressions
Text: Cell 1691 has numbers 12345 and letters abcde
Matches: ['1691', '12345']
# Cell 1692 - regular expressions

import re

text_1692 = "Cell 1692 has numbers 12345 and letters abcde"
pattern_1692 = r"[0-9]+"
matches_1692 = re.findall(pattern_1692, text_1692)

print("Cell 1692 - regular expressions")
print("Text:", text_1692)
print("Matches:", matches_1692)
Cell 1692 - regular expressions
Text: Cell 1692 has numbers 12345 and letters abcde
Matches: ['1692', '12345']
# Cell 1693 - regular expressions

import re

text_1693 = "Cell 1693 has numbers 12345 and letters abcde"
pattern_1693 = r"[0-9]+"
matches_1693 = re.findall(pattern_1693, text_1693)

print("Cell 1693 - regular expressions")
print("Text:", text_1693)
print("Matches:", matches_1693)
Cell 1693 - regular expressions
Text: Cell 1693 has numbers 12345 and letters abcde
Matches: ['1693', '12345']
# Cell 1694 - regular expressions

import re

text_1694 = "Cell 1694 has numbers 12345 and letters abcde"
pattern_1694 = r"[0-9]+"
matches_1694 = re.findall(pattern_1694, text_1694)

print("Cell 1694 - regular expressions")
print("Text:", text_1694)
print("Matches:", matches_1694)
Cell 1694 - regular expressions
Text: Cell 1694 has numbers 12345 and letters abcde
Matches: ['1694', '12345']
# Cell 1695 - regular expressions

import re

text_1695 = "Cell 1695 has numbers 12345 and letters abcde"
pattern_1695 = r"[0-9]+"
matches_1695 = re.findall(pattern_1695, text_1695)

print("Cell 1695 - regular expressions")
print("Text:", text_1695)
print("Matches:", matches_1695)
Cell 1695 - regular expressions
Text: Cell 1695 has numbers 12345 and letters abcde
Matches: ['1695', '12345']
# Cell 1696 - regular expressions

import re

text_1696 = "Cell 1696 has numbers 12345 and letters abcde"
pattern_1696 = r"[0-9]+"
matches_1696 = re.findall(pattern_1696, text_1696)

print("Cell 1696 - regular expressions")
print("Text:", text_1696)
print("Matches:", matches_1696)
Cell 1696 - regular expressions
Text: Cell 1696 has numbers 12345 and letters abcde
Matches: ['1696', '12345']
# Cell 1697 - regular expressions

import re

text_1697 = "Cell 1697 has numbers 12345 and letters abcde"
pattern_1697 = r"[0-9]+"
matches_1697 = re.findall(pattern_1697, text_1697)

print("Cell 1697 - regular expressions")
print("Text:", text_1697)
print("Matches:", matches_1697)
Cell 1697 - regular expressions
Text: Cell 1697 has numbers 12345 and letters abcde
Matches: ['1697', '12345']
# Cell 1698 - regular expressions

import re

text_1698 = "Cell 1698 has numbers 12345 and letters abcde"
pattern_1698 = r"[0-9]+"
matches_1698 = re.findall(pattern_1698, text_1698)

print("Cell 1698 - regular expressions")
print("Text:", text_1698)
print("Matches:", matches_1698)
Cell 1698 - regular expressions
Text: Cell 1698 has numbers 12345 and letters abcde
Matches: ['1698', '12345']
# Cell 1699 - regular expressions

import re

text_1699 = "Cell 1699 has numbers 12345 and letters abcde"
pattern_1699 = r"[0-9]+"
matches_1699 = re.findall(pattern_1699, text_1699)

print("Cell 1699 - regular expressions")
print("Text:", text_1699)
print("Matches:", matches_1699)
Cell 1699 - regular expressions
Text: Cell 1699 has numbers 12345 and letters abcde
Matches: ['1699', '12345']
# Cell 1700 - regular expressions

import re

text_1700 = "Cell 1700 has numbers 12345 and letters abcde"
pattern_1700 = r"[0-9]+"
matches_1700 = re.findall(pattern_1700, text_1700)

print("Cell 1700 - regular expressions")
print("Text:", text_1700)
print("Matches:", matches_1700)
Cell 1700 - regular expressions
Text: Cell 1700 has numbers 12345 and letters abcde
Matches: ['1700', '12345']
# Cell 1701 - regular expressions

import re

text_1701 = "Cell 1701 has numbers 12345 and letters abcde"
pattern_1701 = r"[0-9]+"
matches_1701 = re.findall(pattern_1701, text_1701)

print("Cell 1701 - regular expressions")
print("Text:", text_1701)
print("Matches:", matches_1701)
Cell 1701 - regular expressions
Text: Cell 1701 has numbers 12345 and letters abcde
Matches: ['1701', '12345']
# Cell 1702 - regular expressions

import re

text_1702 = "Cell 1702 has numbers 12345 and letters abcde"
pattern_1702 = r"[0-9]+"
matches_1702 = re.findall(pattern_1702, text_1702)

print("Cell 1702 - regular expressions")
print("Text:", text_1702)
print("Matches:", matches_1702)
Cell 1702 - regular expressions
Text: Cell 1702 has numbers 12345 and letters abcde
Matches: ['1702', '12345']
# Cell 1703 - regular expressions

import re

text_1703 = "Cell 1703 has numbers 12345 and letters abcde"
pattern_1703 = r"[0-9]+"
matches_1703 = re.findall(pattern_1703, text_1703)

print("Cell 1703 - regular expressions")
print("Text:", text_1703)
print("Matches:", matches_1703)
Cell 1703 - regular expressions
Text: Cell 1703 has numbers 12345 and letters abcde
Matches: ['1703', '12345']
# Cell 1704 - regular expressions

import re

text_1704 = "Cell 1704 has numbers 12345 and letters abcde"
pattern_1704 = r"[0-9]+"
matches_1704 = re.findall(pattern_1704, text_1704)

print("Cell 1704 - regular expressions")
print("Text:", text_1704)
print("Matches:", matches_1704)
Cell 1704 - regular expressions
Text: Cell 1704 has numbers 12345 and letters abcde
Matches: ['1704', '12345']
# Cell 1705 - regular expressions

import re

text_1705 = "Cell 1705 has numbers 12345 and letters abcde"
pattern_1705 = r"[0-9]+"
matches_1705 = re.findall(pattern_1705, text_1705)

print("Cell 1705 - regular expressions")
print("Text:", text_1705)
print("Matches:", matches_1705)
Cell 1705 - regular expressions
Text: Cell 1705 has numbers 12345 and letters abcde
Matches: ['1705', '12345']
# Cell 1706 - regular expressions

import re

text_1706 = "Cell 1706 has numbers 12345 and letters abcde"
pattern_1706 = r"[0-9]+"
matches_1706 = re.findall(pattern_1706, text_1706)

print("Cell 1706 - regular expressions")
print("Text:", text_1706)
print("Matches:", matches_1706)
Cell 1706 - regular expressions
Text: Cell 1706 has numbers 12345 and letters abcde
Matches: ['1706', '12345']
# Cell 1707 - regular expressions

import re

text_1707 = "Cell 1707 has numbers 12345 and letters abcde"
pattern_1707 = r"[0-9]+"
matches_1707 = re.findall(pattern_1707, text_1707)

print("Cell 1707 - regular expressions")
print("Text:", text_1707)
print("Matches:", matches_1707)
Cell 1707 - regular expressions
Text: Cell 1707 has numbers 12345 and letters abcde
Matches: ['1707', '12345']
# Cell 1708 - regular expressions

import re

text_1708 = "Cell 1708 has numbers 12345 and letters abcde"
pattern_1708 = r"[0-9]+"
matches_1708 = re.findall(pattern_1708, text_1708)

print("Cell 1708 - regular expressions")
print("Text:", text_1708)
print("Matches:", matches_1708)
Cell 1708 - regular expressions
Text: Cell 1708 has numbers 12345 and letters abcde
Matches: ['1708', '12345']
# Cell 1709 - regular expressions

import re

text_1709 = "Cell 1709 has numbers 12345 and letters abcde"
pattern_1709 = r"[0-9]+"
matches_1709 = re.findall(pattern_1709, text_1709)

print("Cell 1709 - regular expressions")
print("Text:", text_1709)
print("Matches:", matches_1709)
Cell 1709 - regular expressions
Text: Cell 1709 has numbers 12345 and letters abcde
Matches: ['1709', '12345']
# Cell 1710 - regular expressions

import re

text_1710 = "Cell 1710 has numbers 12345 and letters abcde"
pattern_1710 = r"[0-9]+"
matches_1710 = re.findall(pattern_1710, text_1710)

print("Cell 1710 - regular expressions")
print("Text:", text_1710)
print("Matches:", matches_1710)
Cell 1710 - regular expressions
Text: Cell 1710 has numbers 12345 and letters abcde
Matches: ['1710', '12345']
# Cell 1711 - regular expressions

import re

text_1711 = "Cell 1711 has numbers 12345 and letters abcde"
pattern_1711 = r"[0-9]+"
matches_1711 = re.findall(pattern_1711, text_1711)

print("Cell 1711 - regular expressions")
print("Text:", text_1711)
print("Matches:", matches_1711)
Cell 1711 - regular expressions
Text: Cell 1711 has numbers 12345 and letters abcde
Matches: ['1711', '12345']
# Cell 1712 - regular expressions

import re

text_1712 = "Cell 1712 has numbers 12345 and letters abcde"
pattern_1712 = r"[0-9]+"
matches_1712 = re.findall(pattern_1712, text_1712)

print("Cell 1712 - regular expressions")
print("Text:", text_1712)
print("Matches:", matches_1712)
Cell 1712 - regular expressions
Text: Cell 1712 has numbers 12345 and letters abcde
Matches: ['1712', '12345']
# Cell 1713 - regular expressions

import re

text_1713 = "Cell 1713 has numbers 12345 and letters abcde"
pattern_1713 = r"[0-9]+"
matches_1713 = re.findall(pattern_1713, text_1713)

print("Cell 1713 - regular expressions")
print("Text:", text_1713)
print("Matches:", matches_1713)
Cell 1713 - regular expressions
Text: Cell 1713 has numbers 12345 and letters abcde
Matches: ['1713', '12345']
# Cell 1714 - regular expressions

import re

text_1714 = "Cell 1714 has numbers 12345 and letters abcde"
pattern_1714 = r"[0-9]+"
matches_1714 = re.findall(pattern_1714, text_1714)

print("Cell 1714 - regular expressions")
print("Text:", text_1714)
print("Matches:", matches_1714)
Cell 1714 - regular expressions
Text: Cell 1714 has numbers 12345 and letters abcde
Matches: ['1714', '12345']
# Cell 1715 - regular expressions

import re

text_1715 = "Cell 1715 has numbers 12345 and letters abcde"
pattern_1715 = r"[0-9]+"
matches_1715 = re.findall(pattern_1715, text_1715)

print("Cell 1715 - regular expressions")
print("Text:", text_1715)
print("Matches:", matches_1715)
Cell 1715 - regular expressions
Text: Cell 1715 has numbers 12345 and letters abcde
Matches: ['1715', '12345']
# Cell 1716 - regular expressions

import re

text_1716 = "Cell 1716 has numbers 12345 and letters abcde"
pattern_1716 = r"[0-9]+"
matches_1716 = re.findall(pattern_1716, text_1716)

print("Cell 1716 - regular expressions")
print("Text:", text_1716)
print("Matches:", matches_1716)
Cell 1716 - regular expressions
Text: Cell 1716 has numbers 12345 and letters abcde
Matches: ['1716', '12345']
# Cell 1717 - regular expressions

import re

text_1717 = "Cell 1717 has numbers 12345 and letters abcde"
pattern_1717 = r"[0-9]+"
matches_1717 = re.findall(pattern_1717, text_1717)

print("Cell 1717 - regular expressions")
print("Text:", text_1717)
print("Matches:", matches_1717)
Cell 1717 - regular expressions
Text: Cell 1717 has numbers 12345 and letters abcde
Matches: ['1717', '12345']
# Cell 1718 - regular expressions

import re

text_1718 = "Cell 1718 has numbers 12345 and letters abcde"
pattern_1718 = r"[0-9]+"
matches_1718 = re.findall(pattern_1718, text_1718)

print("Cell 1718 - regular expressions")
print("Text:", text_1718)
print("Matches:", matches_1718)
Cell 1718 - regular expressions
Text: Cell 1718 has numbers 12345 and letters abcde
Matches: ['1718', '12345']
# Cell 1719 - regular expressions

import re

text_1719 = "Cell 1719 has numbers 12345 and letters abcde"
pattern_1719 = r"[0-9]+"
matches_1719 = re.findall(pattern_1719, text_1719)

print("Cell 1719 - regular expressions")
print("Text:", text_1719)
print("Matches:", matches_1719)
Cell 1719 - regular expressions
Text: Cell 1719 has numbers 12345 and letters abcde
Matches: ['1719', '12345']
# Cell 1720 - regular expressions

import re

text_1720 = "Cell 1720 has numbers 12345 and letters abcde"
pattern_1720 = r"[0-9]+"
matches_1720 = re.findall(pattern_1720, text_1720)

print("Cell 1720 - regular expressions")
print("Text:", text_1720)
print("Matches:", matches_1720)
Cell 1720 - regular expressions
Text: Cell 1720 has numbers 12345 and letters abcde
Matches: ['1720', '12345']
# Cell 1721 - regular expressions

import re

text_1721 = "Cell 1721 has numbers 12345 and letters abcde"
pattern_1721 = r"[0-9]+"
matches_1721 = re.findall(pattern_1721, text_1721)

print("Cell 1721 - regular expressions")
print("Text:", text_1721)
print("Matches:", matches_1721)
Cell 1721 - regular expressions
Text: Cell 1721 has numbers 12345 and letters abcde
Matches: ['1721', '12345']
# Cell 1722 - regular expressions

import re

text_1722 = "Cell 1722 has numbers 12345 and letters abcde"
pattern_1722 = r"[0-9]+"
matches_1722 = re.findall(pattern_1722, text_1722)

print("Cell 1722 - regular expressions")
print("Text:", text_1722)
print("Matches:", matches_1722)
Cell 1722 - regular expressions
Text: Cell 1722 has numbers 12345 and letters abcde
Matches: ['1722', '12345']
# Cell 1723 - regular expressions

import re

text_1723 = "Cell 1723 has numbers 12345 and letters abcde"
pattern_1723 = r"[0-9]+"
matches_1723 = re.findall(pattern_1723, text_1723)

print("Cell 1723 - regular expressions")
print("Text:", text_1723)
print("Matches:", matches_1723)
Cell 1723 - regular expressions
Text: Cell 1723 has numbers 12345 and letters abcde
Matches: ['1723', '12345']
# Cell 1724 - regular expressions

import re

text_1724 = "Cell 1724 has numbers 12345 and letters abcde"
pattern_1724 = r"[0-9]+"
matches_1724 = re.findall(pattern_1724, text_1724)

print("Cell 1724 - regular expressions")
print("Text:", text_1724)
print("Matches:", matches_1724)
Cell 1724 - regular expressions
Text: Cell 1724 has numbers 12345 and letters abcde
Matches: ['1724', '12345']
# Cell 1725 - regular expressions

import re

text_1725 = "Cell 1725 has numbers 12345 and letters abcde"
pattern_1725 = r"[0-9]+"
matches_1725 = re.findall(pattern_1725, text_1725)

print("Cell 1725 - regular expressions")
print("Text:", text_1725)
print("Matches:", matches_1725)
Cell 1725 - regular expressions
Text: Cell 1725 has numbers 12345 and letters abcde
Matches: ['1725', '12345']
# Cell 1726 - regular expressions

import re

text_1726 = "Cell 1726 has numbers 12345 and letters abcde"
pattern_1726 = r"[0-9]+"
matches_1726 = re.findall(pattern_1726, text_1726)

print("Cell 1726 - regular expressions")
print("Text:", text_1726)
print("Matches:", matches_1726)
Cell 1726 - regular expressions
Text: Cell 1726 has numbers 12345 and letters abcde
Matches: ['1726', '12345']
# Cell 1727 - regular expressions

import re

text_1727 = "Cell 1727 has numbers 12345 and letters abcde"
pattern_1727 = r"[0-9]+"
matches_1727 = re.findall(pattern_1727, text_1727)

print("Cell 1727 - regular expressions")
print("Text:", text_1727)
print("Matches:", matches_1727)
Cell 1727 - regular expressions
Text: Cell 1727 has numbers 12345 and letters abcde
Matches: ['1727', '12345']
# Cell 1728 - regular expressions

import re

text_1728 = "Cell 1728 has numbers 12345 and letters abcde"
pattern_1728 = r"[0-9]+"
matches_1728 = re.findall(pattern_1728, text_1728)

print("Cell 1728 - regular expressions")
print("Text:", text_1728)
print("Matches:", matches_1728)
Cell 1728 - regular expressions
Text: Cell 1728 has numbers 12345 and letters abcde
Matches: ['1728', '12345']
# Cell 1729 - regular expressions

import re

text_1729 = "Cell 1729 has numbers 12345 and letters abcde"
pattern_1729 = r"[0-9]+"
matches_1729 = re.findall(pattern_1729, text_1729)

print("Cell 1729 - regular expressions")
print("Text:", text_1729)
print("Matches:", matches_1729)
Cell 1729 - regular expressions
Text: Cell 1729 has numbers 12345 and letters abcde
Matches: ['1729', '12345']
# Cell 1730 - regular expressions

import re

text_1730 = "Cell 1730 has numbers 12345 and letters abcde"
pattern_1730 = r"[0-9]+"
matches_1730 = re.findall(pattern_1730, text_1730)

print("Cell 1730 - regular expressions")
print("Text:", text_1730)
print("Matches:", matches_1730)
Cell 1730 - regular expressions
Text: Cell 1730 has numbers 12345 and letters abcde
Matches: ['1730', '12345']
# Cell 1731 - regular expressions

import re

text_1731 = "Cell 1731 has numbers 12345 and letters abcde"
pattern_1731 = r"[0-9]+"
matches_1731 = re.findall(pattern_1731, text_1731)

print("Cell 1731 - regular expressions")
print("Text:", text_1731)
print("Matches:", matches_1731)
Cell 1731 - regular expressions
Text: Cell 1731 has numbers 12345 and letters abcde
Matches: ['1731', '12345']
# Cell 1732 - regular expressions

import re

text_1732 = "Cell 1732 has numbers 12345 and letters abcde"
pattern_1732 = r"[0-9]+"
matches_1732 = re.findall(pattern_1732, text_1732)

print("Cell 1732 - regular expressions")
print("Text:", text_1732)
print("Matches:", matches_1732)
Cell 1732 - regular expressions
Text: Cell 1732 has numbers 12345 and letters abcde
Matches: ['1732', '12345']
# Cell 1733 - regular expressions

import re

text_1733 = "Cell 1733 has numbers 12345 and letters abcde"
pattern_1733 = r"[0-9]+"
matches_1733 = re.findall(pattern_1733, text_1733)

print("Cell 1733 - regular expressions")
print("Text:", text_1733)
print("Matches:", matches_1733)
Cell 1733 - regular expressions
Text: Cell 1733 has numbers 12345 and letters abcde
Matches: ['1733', '12345']
# Cell 1734 - regular expressions

import re

text_1734 = "Cell 1734 has numbers 12345 and letters abcde"
pattern_1734 = r"[0-9]+"
matches_1734 = re.findall(pattern_1734, text_1734)

print("Cell 1734 - regular expressions")
print("Text:", text_1734)
print("Matches:", matches_1734)
Cell 1734 - regular expressions
Text: Cell 1734 has numbers 12345 and letters abcde
Matches: ['1734', '12345']
# Cell 1735 - regular expressions

import re

text_1735 = "Cell 1735 has numbers 12345 and letters abcde"
pattern_1735 = r"[0-9]+"
matches_1735 = re.findall(pattern_1735, text_1735)

print("Cell 1735 - regular expressions")
print("Text:", text_1735)
print("Matches:", matches_1735)
Cell 1735 - regular expressions
Text: Cell 1735 has numbers 12345 and letters abcde
Matches: ['1735', '12345']
# Cell 1736 - regular expressions

import re

text_1736 = "Cell 1736 has numbers 12345 and letters abcde"
pattern_1736 = r"[0-9]+"
matches_1736 = re.findall(pattern_1736, text_1736)

print("Cell 1736 - regular expressions")
print("Text:", text_1736)
print("Matches:", matches_1736)
Cell 1736 - regular expressions
Text: Cell 1736 has numbers 12345 and letters abcde
Matches: ['1736', '12345']
# Cell 1737 - regular expressions

import re

text_1737 = "Cell 1737 has numbers 12345 and letters abcde"
pattern_1737 = r"[0-9]+"
matches_1737 = re.findall(pattern_1737, text_1737)

print("Cell 1737 - regular expressions")
print("Text:", text_1737)
print("Matches:", matches_1737)
Cell 1737 - regular expressions
Text: Cell 1737 has numbers 12345 and letters abcde
Matches: ['1737', '12345']
# Cell 1738 - regular expressions

import re

text_1738 = "Cell 1738 has numbers 12345 and letters abcde"
pattern_1738 = r"[0-9]+"
matches_1738 = re.findall(pattern_1738, text_1738)

print("Cell 1738 - regular expressions")
print("Text:", text_1738)
print("Matches:", matches_1738)
Cell 1738 - regular expressions
Text: Cell 1738 has numbers 12345 and letters abcde
Matches: ['1738', '12345']
# Cell 1739 - regular expressions

import re

text_1739 = "Cell 1739 has numbers 12345 and letters abcde"
pattern_1739 = r"[0-9]+"
matches_1739 = re.findall(pattern_1739, text_1739)

print("Cell 1739 - regular expressions")
print("Text:", text_1739)
print("Matches:", matches_1739)
Cell 1739 - regular expressions
Text: Cell 1739 has numbers 12345 and letters abcde
Matches: ['1739', '12345']
# Cell 1740 - regular expressions

import re

text_1740 = "Cell 1740 has numbers 12345 and letters abcde"
pattern_1740 = r"[0-9]+"
matches_1740 = re.findall(pattern_1740, text_1740)

print("Cell 1740 - regular expressions")
print("Text:", text_1740)
print("Matches:", matches_1740)
Cell 1740 - regular expressions
Text: Cell 1740 has numbers 12345 and letters abcde
Matches: ['1740', '12345']
# Cell 1741 - regular expressions

import re

text_1741 = "Cell 1741 has numbers 12345 and letters abcde"
pattern_1741 = r"[0-9]+"
matches_1741 = re.findall(pattern_1741, text_1741)

print("Cell 1741 - regular expressions")
print("Text:", text_1741)
print("Matches:", matches_1741)
Cell 1741 - regular expressions
Text: Cell 1741 has numbers 12345 and letters abcde
Matches: ['1741', '12345']
# Cell 1742 - regular expressions

import re

text_1742 = "Cell 1742 has numbers 12345 and letters abcde"
pattern_1742 = r"[0-9]+"
matches_1742 = re.findall(pattern_1742, text_1742)

print("Cell 1742 - regular expressions")
print("Text:", text_1742)
print("Matches:", matches_1742)
Cell 1742 - regular expressions
Text: Cell 1742 has numbers 12345 and letters abcde
Matches: ['1742', '12345']
# Cell 1743 - regular expressions

import re

text_1743 = "Cell 1743 has numbers 12345 and letters abcde"
pattern_1743 = r"[0-9]+"
matches_1743 = re.findall(pattern_1743, text_1743)

print("Cell 1743 - regular expressions")
print("Text:", text_1743)
print("Matches:", matches_1743)
Cell 1743 - regular expressions
Text: Cell 1743 has numbers 12345 and letters abcde
Matches: ['1743', '12345']
# Cell 1744 - regular expressions

import re

text_1744 = "Cell 1744 has numbers 12345 and letters abcde"
pattern_1744 = r"[0-9]+"
matches_1744 = re.findall(pattern_1744, text_1744)

print("Cell 1744 - regular expressions")
print("Text:", text_1744)
print("Matches:", matches_1744)
Cell 1744 - regular expressions
Text: Cell 1744 has numbers 12345 and letters abcde
Matches: ['1744', '12345']
# Cell 1745 - regular expressions

import re

text_1745 = "Cell 1745 has numbers 12345 and letters abcde"
pattern_1745 = r"[0-9]+"
matches_1745 = re.findall(pattern_1745, text_1745)

print("Cell 1745 - regular expressions")
print("Text:", text_1745)
print("Matches:", matches_1745)
Cell 1745 - regular expressions
Text: Cell 1745 has numbers 12345 and letters abcde
Matches: ['1745', '12345']
# Cell 1746 - regular expressions

import re

text_1746 = "Cell 1746 has numbers 12345 and letters abcde"
pattern_1746 = r"[0-9]+"
matches_1746 = re.findall(pattern_1746, text_1746)

print("Cell 1746 - regular expressions")
print("Text:", text_1746)
print("Matches:", matches_1746)
Cell 1746 - regular expressions
Text: Cell 1746 has numbers 12345 and letters abcde
Matches: ['1746', '12345']
# Cell 1747 - regular expressions

import re

text_1747 = "Cell 1747 has numbers 12345 and letters abcde"
pattern_1747 = r"[0-9]+"
matches_1747 = re.findall(pattern_1747, text_1747)

print("Cell 1747 - regular expressions")
print("Text:", text_1747)
print("Matches:", matches_1747)
Cell 1747 - regular expressions
Text: Cell 1747 has numbers 12345 and letters abcde
Matches: ['1747', '12345']
# Cell 1748 - regular expressions

import re

text_1748 = "Cell 1748 has numbers 12345 and letters abcde"
pattern_1748 = r"[0-9]+"
matches_1748 = re.findall(pattern_1748, text_1748)

print("Cell 1748 - regular expressions")
print("Text:", text_1748)
print("Matches:", matches_1748)
Cell 1748 - regular expressions
Text: Cell 1748 has numbers 12345 and letters abcde
Matches: ['1748', '12345']
# Cell 1749 - regular expressions

import re

text_1749 = "Cell 1749 has numbers 12345 and letters abcde"
pattern_1749 = r"[0-9]+"
matches_1749 = re.findall(pattern_1749, text_1749)

print("Cell 1749 - regular expressions")
print("Text:", text_1749)
print("Matches:", matches_1749)
Cell 1749 - regular expressions
Text: Cell 1749 has numbers 12345 and letters abcde
Matches: ['1749', '12345']
# Cell 1750 - regular expressions

import re

text_1750 = "Cell 1750 has numbers 12345 and letters abcde"
pattern_1750 = r"[0-9]+"
matches_1750 = re.findall(pattern_1750, text_1750)

print("Cell 1750 - regular expressions")
print("Text:", text_1750)
print("Matches:", matches_1750)
Cell 1750 - regular expressions
Text: Cell 1750 has numbers 12345 and letters abcde
Matches: ['1750', '12345']
# Cell 1751 - regular expressions

import re

text_1751 = "Cell 1751 has numbers 12345 and letters abcde"
pattern_1751 = r"[0-9]+"
matches_1751 = re.findall(pattern_1751, text_1751)

print("Cell 1751 - regular expressions")
print("Text:", text_1751)
print("Matches:", matches_1751)
Cell 1751 - regular expressions
Text: Cell 1751 has numbers 12345 and letters abcde
Matches: ['1751', '12345']
# Cell 1752 - regular expressions

import re

text_1752 = "Cell 1752 has numbers 12345 and letters abcde"
pattern_1752 = r"[0-9]+"
matches_1752 = re.findall(pattern_1752, text_1752)

print("Cell 1752 - regular expressions")
print("Text:", text_1752)
print("Matches:", matches_1752)
Cell 1752 - regular expressions
Text: Cell 1752 has numbers 12345 and letters abcde
Matches: ['1752', '12345']
# Cell 1753 - regular expressions

import re

text_1753 = "Cell 1753 has numbers 12345 and letters abcde"
pattern_1753 = r"[0-9]+"
matches_1753 = re.findall(pattern_1753, text_1753)

print("Cell 1753 - regular expressions")
print("Text:", text_1753)
print("Matches:", matches_1753)
Cell 1753 - regular expressions
Text: Cell 1753 has numbers 12345 and letters abcde
Matches: ['1753', '12345']
# Cell 1754 - regular expressions

import re

text_1754 = "Cell 1754 has numbers 12345 and letters abcde"
pattern_1754 = r"[0-9]+"
matches_1754 = re.findall(pattern_1754, text_1754)

print("Cell 1754 - regular expressions")
print("Text:", text_1754)
print("Matches:", matches_1754)
Cell 1754 - regular expressions
Text: Cell 1754 has numbers 12345 and letters abcde
Matches: ['1754', '12345']
# Cell 1755 - regular expressions

import re

text_1755 = "Cell 1755 has numbers 12345 and letters abcde"
pattern_1755 = r"[0-9]+"
matches_1755 = re.findall(pattern_1755, text_1755)

print("Cell 1755 - regular expressions")
print("Text:", text_1755)
print("Matches:", matches_1755)
Cell 1755 - regular expressions
Text: Cell 1755 has numbers 12345 and letters abcde
Matches: ['1755', '12345']
# Cell 1756 - regular expressions

import re

text_1756 = "Cell 1756 has numbers 12345 and letters abcde"
pattern_1756 = r"[0-9]+"
matches_1756 = re.findall(pattern_1756, text_1756)

print("Cell 1756 - regular expressions")
print("Text:", text_1756)
print("Matches:", matches_1756)
Cell 1756 - regular expressions
Text: Cell 1756 has numbers 12345 and letters abcde
Matches: ['1756', '12345']
# Cell 1757 - regular expressions

import re

text_1757 = "Cell 1757 has numbers 12345 and letters abcde"
pattern_1757 = r"[0-9]+"
matches_1757 = re.findall(pattern_1757, text_1757)

print("Cell 1757 - regular expressions")
print("Text:", text_1757)
print("Matches:", matches_1757)
Cell 1757 - regular expressions
Text: Cell 1757 has numbers 12345 and letters abcde
Matches: ['1757', '12345']
# Cell 1758 - regular expressions

import re

text_1758 = "Cell 1758 has numbers 12345 and letters abcde"
pattern_1758 = r"[0-9]+"
matches_1758 = re.findall(pattern_1758, text_1758)

print("Cell 1758 - regular expressions")
print("Text:", text_1758)
print("Matches:", matches_1758)
Cell 1758 - regular expressions
Text: Cell 1758 has numbers 12345 and letters abcde
Matches: ['1758', '12345']
# Cell 1759 - regular expressions

import re

text_1759 = "Cell 1759 has numbers 12345 and letters abcde"
pattern_1759 = r"[0-9]+"
matches_1759 = re.findall(pattern_1759, text_1759)

print("Cell 1759 - regular expressions")
print("Text:", text_1759)
print("Matches:", matches_1759)
Cell 1759 - regular expressions
Text: Cell 1759 has numbers 12345 and letters abcde
Matches: ['1759', '12345']
# Cell 1760 - regular expressions

import re

text_1760 = "Cell 1760 has numbers 12345 and letters abcde"
pattern_1760 = r"[0-9]+"
matches_1760 = re.findall(pattern_1760, text_1760)

print("Cell 1760 - regular expressions")
print("Text:", text_1760)
print("Matches:", matches_1760)
Cell 1760 - regular expressions
Text: Cell 1760 has numbers 12345 and letters abcde
Matches: ['1760', '12345']
# Cell 1761 - regular expressions

import re

text_1761 = "Cell 1761 has numbers 12345 and letters abcde"
pattern_1761 = r"[0-9]+"
matches_1761 = re.findall(pattern_1761, text_1761)

print("Cell 1761 - regular expressions")
print("Text:", text_1761)
print("Matches:", matches_1761)
Cell 1761 - regular expressions
Text: Cell 1761 has numbers 12345 and letters abcde
Matches: ['1761', '12345']
# Cell 1762 - regular expressions

import re

text_1762 = "Cell 1762 has numbers 12345 and letters abcde"
pattern_1762 = r"[0-9]+"
matches_1762 = re.findall(pattern_1762, text_1762)

print("Cell 1762 - regular expressions")
print("Text:", text_1762)
print("Matches:", matches_1762)
Cell 1762 - regular expressions
Text: Cell 1762 has numbers 12345 and letters abcde
Matches: ['1762', '12345']
# Cell 1763 - regular expressions

import re

text_1763 = "Cell 1763 has numbers 12345 and letters abcde"
pattern_1763 = r"[0-9]+"
matches_1763 = re.findall(pattern_1763, text_1763)

print("Cell 1763 - regular expressions")
print("Text:", text_1763)
print("Matches:", matches_1763)
Cell 1763 - regular expressions
Text: Cell 1763 has numbers 12345 and letters abcde
Matches: ['1763', '12345']
# Cell 1764 - regular expressions

import re

text_1764 = "Cell 1764 has numbers 12345 and letters abcde"
pattern_1764 = r"[0-9]+"
matches_1764 = re.findall(pattern_1764, text_1764)

print("Cell 1764 - regular expressions")
print("Text:", text_1764)
print("Matches:", matches_1764)
Cell 1764 - regular expressions
Text: Cell 1764 has numbers 12345 and letters abcde
Matches: ['1764', '12345']
# Cell 1765 - regular expressions

import re

text_1765 = "Cell 1765 has numbers 12345 and letters abcde"
pattern_1765 = r"[0-9]+"
matches_1765 = re.findall(pattern_1765, text_1765)

print("Cell 1765 - regular expressions")
print("Text:", text_1765)
print("Matches:", matches_1765)
Cell 1765 - regular expressions
Text: Cell 1765 has numbers 12345 and letters abcde
Matches: ['1765', '12345']
# Cell 1766 - regular expressions

import re

text_1766 = "Cell 1766 has numbers 12345 and letters abcde"
pattern_1766 = r"[0-9]+"
matches_1766 = re.findall(pattern_1766, text_1766)

print("Cell 1766 - regular expressions")
print("Text:", text_1766)
print("Matches:", matches_1766)
Cell 1766 - regular expressions
Text: Cell 1766 has numbers 12345 and letters abcde
Matches: ['1766', '12345']
# Cell 1767 - regular expressions

import re

text_1767 = "Cell 1767 has numbers 12345 and letters abcde"
pattern_1767 = r"[0-9]+"
matches_1767 = re.findall(pattern_1767, text_1767)

print("Cell 1767 - regular expressions")
print("Text:", text_1767)
print("Matches:", matches_1767)
Cell 1767 - regular expressions
Text: Cell 1767 has numbers 12345 and letters abcde
Matches: ['1767', '12345']
# Cell 1768 - regular expressions

import re

text_1768 = "Cell 1768 has numbers 12345 and letters abcde"
pattern_1768 = r"[0-9]+"
matches_1768 = re.findall(pattern_1768, text_1768)

print("Cell 1768 - regular expressions")
print("Text:", text_1768)
print("Matches:", matches_1768)
Cell 1768 - regular expressions
Text: Cell 1768 has numbers 12345 and letters abcde
Matches: ['1768', '12345']
# Cell 1769 - regular expressions

import re

text_1769 = "Cell 1769 has numbers 12345 and letters abcde"
pattern_1769 = r"[0-9]+"
matches_1769 = re.findall(pattern_1769, text_1769)

print("Cell 1769 - regular expressions")
print("Text:", text_1769)
print("Matches:", matches_1769)
Cell 1769 - regular expressions
Text: Cell 1769 has numbers 12345 and letters abcde
Matches: ['1769', '12345']
# Cell 1770 - regular expressions

import re

text_1770 = "Cell 1770 has numbers 12345 and letters abcde"
pattern_1770 = r"[0-9]+"
matches_1770 = re.findall(pattern_1770, text_1770)

print("Cell 1770 - regular expressions")
print("Text:", text_1770)
print("Matches:", matches_1770)
Cell 1770 - regular expressions
Text: Cell 1770 has numbers 12345 and letters abcde
Matches: ['1770', '12345']
# Cell 1771 - regular expressions

import re

text_1771 = "Cell 1771 has numbers 12345 and letters abcde"
pattern_1771 = r"[0-9]+"
matches_1771 = re.findall(pattern_1771, text_1771)

print("Cell 1771 - regular expressions")
print("Text:", text_1771)
print("Matches:", matches_1771)
Cell 1771 - regular expressions
Text: Cell 1771 has numbers 12345 and letters abcde
Matches: ['1771', '12345']
# Cell 1772 - regular expressions

import re

text_1772 = "Cell 1772 has numbers 12345 and letters abcde"
pattern_1772 = r"[0-9]+"
matches_1772 = re.findall(pattern_1772, text_1772)

print("Cell 1772 - regular expressions")
print("Text:", text_1772)
print("Matches:", matches_1772)
Cell 1772 - regular expressions
Text: Cell 1772 has numbers 12345 and letters abcde
Matches: ['1772', '12345']
# Cell 1773 - regular expressions

import re

text_1773 = "Cell 1773 has numbers 12345 and letters abcde"
pattern_1773 = r"[0-9]+"
matches_1773 = re.findall(pattern_1773, text_1773)

print("Cell 1773 - regular expressions")
print("Text:", text_1773)
print("Matches:", matches_1773)
Cell 1773 - regular expressions
Text: Cell 1773 has numbers 12345 and letters abcde
Matches: ['1773', '12345']
# Cell 1774 - regular expressions

import re

text_1774 = "Cell 1774 has numbers 12345 and letters abcde"
pattern_1774 = r"[0-9]+"
matches_1774 = re.findall(pattern_1774, text_1774)

print("Cell 1774 - regular expressions")
print("Text:", text_1774)
print("Matches:", matches_1774)
Cell 1774 - regular expressions
Text: Cell 1774 has numbers 12345 and letters abcde
Matches: ['1774', '12345']
# Cell 1775 - regular expressions

import re

text_1775 = "Cell 1775 has numbers 12345 and letters abcde"
pattern_1775 = r"[0-9]+"
matches_1775 = re.findall(pattern_1775, text_1775)

print("Cell 1775 - regular expressions")
print("Text:", text_1775)
print("Matches:", matches_1775)
Cell 1775 - regular expressions
Text: Cell 1775 has numbers 12345 and letters abcde
Matches: ['1775', '12345']
# Cell 1776 - regular expressions

import re

text_1776 = "Cell 1776 has numbers 12345 and letters abcde"
pattern_1776 = r"[0-9]+"
matches_1776 = re.findall(pattern_1776, text_1776)

print("Cell 1776 - regular expressions")
print("Text:", text_1776)
print("Matches:", matches_1776)
Cell 1776 - regular expressions
Text: Cell 1776 has numbers 12345 and letters abcde
Matches: ['1776', '12345']
# Cell 1777 - regular expressions

import re

text_1777 = "Cell 1777 has numbers 12345 and letters abcde"
pattern_1777 = r"[0-9]+"
matches_1777 = re.findall(pattern_1777, text_1777)

print("Cell 1777 - regular expressions")
print("Text:", text_1777)
print("Matches:", matches_1777)
Cell 1777 - regular expressions
Text: Cell 1777 has numbers 12345 and letters abcde
Matches: ['1777', '12345']
# Cell 1778 - regular expressions

import re

text_1778 = "Cell 1778 has numbers 12345 and letters abcde"
pattern_1778 = r"[0-9]+"
matches_1778 = re.findall(pattern_1778, text_1778)

print("Cell 1778 - regular expressions")
print("Text:", text_1778)
print("Matches:", matches_1778)
Cell 1778 - regular expressions
Text: Cell 1778 has numbers 12345 and letters abcde
Matches: ['1778', '12345']
# Cell 1779 - regular expressions

import re

text_1779 = "Cell 1779 has numbers 12345 and letters abcde"
pattern_1779 = r"[0-9]+"
matches_1779 = re.findall(pattern_1779, text_1779)

print("Cell 1779 - regular expressions")
print("Text:", text_1779)
print("Matches:", matches_1779)
Cell 1779 - regular expressions
Text: Cell 1779 has numbers 12345 and letters abcde
Matches: ['1779', '12345']
# Cell 1780 - regular expressions

import re

text_1780 = "Cell 1780 has numbers 12345 and letters abcde"
pattern_1780 = r"[0-9]+"
matches_1780 = re.findall(pattern_1780, text_1780)

print("Cell 1780 - regular expressions")
print("Text:", text_1780)
print("Matches:", matches_1780)
Cell 1780 - regular expressions
Text: Cell 1780 has numbers 12345 and letters abcde
Matches: ['1780', '12345']
# Cell 1781 - regular expressions

import re

text_1781 = "Cell 1781 has numbers 12345 and letters abcde"
pattern_1781 = r"[0-9]+"
matches_1781 = re.findall(pattern_1781, text_1781)

print("Cell 1781 - regular expressions")
print("Text:", text_1781)
print("Matches:", matches_1781)
Cell 1781 - regular expressions
Text: Cell 1781 has numbers 12345 and letters abcde
Matches: ['1781', '12345']
# Cell 1782 - regular expressions

import re

text_1782 = "Cell 1782 has numbers 12345 and letters abcde"
pattern_1782 = r"[0-9]+"
matches_1782 = re.findall(pattern_1782, text_1782)

print("Cell 1782 - regular expressions")
print("Text:", text_1782)
print("Matches:", matches_1782)
Cell 1782 - regular expressions
Text: Cell 1782 has numbers 12345 and letters abcde
Matches: ['1782', '12345']
# Cell 1783 - regular expressions

import re

text_1783 = "Cell 1783 has numbers 12345 and letters abcde"
pattern_1783 = r"[0-9]+"
matches_1783 = re.findall(pattern_1783, text_1783)

print("Cell 1783 - regular expressions")
print("Text:", text_1783)
print("Matches:", matches_1783)
Cell 1783 - regular expressions
Text: Cell 1783 has numbers 12345 and letters abcde
Matches: ['1783', '12345']
# Cell 1784 - regular expressions

import re

text_1784 = "Cell 1784 has numbers 12345 and letters abcde"
pattern_1784 = r"[0-9]+"
matches_1784 = re.findall(pattern_1784, text_1784)

print("Cell 1784 - regular expressions")
print("Text:", text_1784)
print("Matches:", matches_1784)
Cell 1784 - regular expressions
Text: Cell 1784 has numbers 12345 and letters abcde
Matches: ['1784', '12345']
# Cell 1785 - regular expressions

import re

text_1785 = "Cell 1785 has numbers 12345 and letters abcde"
pattern_1785 = r"[0-9]+"
matches_1785 = re.findall(pattern_1785, text_1785)

print("Cell 1785 - regular expressions")
print("Text:", text_1785)
print("Matches:", matches_1785)
Cell 1785 - regular expressions
Text: Cell 1785 has numbers 12345 and letters abcde
Matches: ['1785', '12345']
# Cell 1786 - regular expressions

import re

text_1786 = "Cell 1786 has numbers 12345 and letters abcde"
pattern_1786 = r"[0-9]+"
matches_1786 = re.findall(pattern_1786, text_1786)

print("Cell 1786 - regular expressions")
print("Text:", text_1786)
print("Matches:", matches_1786)
Cell 1786 - regular expressions
Text: Cell 1786 has numbers 12345 and letters abcde
Matches: ['1786', '12345']
# Cell 1787 - regular expressions

import re

text_1787 = "Cell 1787 has numbers 12345 and letters abcde"
pattern_1787 = r"[0-9]+"
matches_1787 = re.findall(pattern_1787, text_1787)

print("Cell 1787 - regular expressions")
print("Text:", text_1787)
print("Matches:", matches_1787)
Cell 1787 - regular expressions
Text: Cell 1787 has numbers 12345 and letters abcde
Matches: ['1787', '12345']
# Cell 1788 - regular expressions

import re

text_1788 = "Cell 1788 has numbers 12345 and letters abcde"
pattern_1788 = r"[0-9]+"
matches_1788 = re.findall(pattern_1788, text_1788)

print("Cell 1788 - regular expressions")
print("Text:", text_1788)
print("Matches:", matches_1788)
Cell 1788 - regular expressions
Text: Cell 1788 has numbers 12345 and letters abcde
Matches: ['1788', '12345']
# Cell 1789 - regular expressions

import re

text_1789 = "Cell 1789 has numbers 12345 and letters abcde"
pattern_1789 = r"[0-9]+"
matches_1789 = re.findall(pattern_1789, text_1789)

print("Cell 1789 - regular expressions")
print("Text:", text_1789)
print("Matches:", matches_1789)
Cell 1789 - regular expressions
Text: Cell 1789 has numbers 12345 and letters abcde
Matches: ['1789', '12345']
# Cell 1790 - regular expressions

import re

text_1790 = "Cell 1790 has numbers 12345 and letters abcde"
pattern_1790 = r"[0-9]+"
matches_1790 = re.findall(pattern_1790, text_1790)

print("Cell 1790 - regular expressions")
print("Text:", text_1790)
print("Matches:", matches_1790)
Cell 1790 - regular expressions
Text: Cell 1790 has numbers 12345 and letters abcde
Matches: ['1790', '12345']
# Cell 1791 - regular expressions

import re

text_1791 = "Cell 1791 has numbers 12345 and letters abcde"
pattern_1791 = r"[0-9]+"
matches_1791 = re.findall(pattern_1791, text_1791)

print("Cell 1791 - regular expressions")
print("Text:", text_1791)
print("Matches:", matches_1791)
Cell 1791 - regular expressions
Text: Cell 1791 has numbers 12345 and letters abcde
Matches: ['1791', '12345']
# Cell 1792 - regular expressions

import re

text_1792 = "Cell 1792 has numbers 12345 and letters abcde"
pattern_1792 = r"[0-9]+"
matches_1792 = re.findall(pattern_1792, text_1792)

print("Cell 1792 - regular expressions")
print("Text:", text_1792)
print("Matches:", matches_1792)
Cell 1792 - regular expressions
Text: Cell 1792 has numbers 12345 and letters abcde
Matches: ['1792', '12345']
# Cell 1793 - regular expressions

import re

text_1793 = "Cell 1793 has numbers 12345 and letters abcde"
pattern_1793 = r"[0-9]+"
matches_1793 = re.findall(pattern_1793, text_1793)

print("Cell 1793 - regular expressions")
print("Text:", text_1793)
print("Matches:", matches_1793)
Cell 1793 - regular expressions
Text: Cell 1793 has numbers 12345 and letters abcde
Matches: ['1793', '12345']
# Cell 1794 - regular expressions

import re

text_1794 = "Cell 1794 has numbers 12345 and letters abcde"
pattern_1794 = r"[0-9]+"
matches_1794 = re.findall(pattern_1794, text_1794)

print("Cell 1794 - regular expressions")
print("Text:", text_1794)
print("Matches:", matches_1794)
Cell 1794 - regular expressions
Text: Cell 1794 has numbers 12345 and letters abcde
Matches: ['1794', '12345']
# Cell 1795 - regular expressions

import re

text_1795 = "Cell 1795 has numbers 12345 and letters abcde"
pattern_1795 = r"[0-9]+"
matches_1795 = re.findall(pattern_1795, text_1795)

print("Cell 1795 - regular expressions")
print("Text:", text_1795)
print("Matches:", matches_1795)
Cell 1795 - regular expressions
Text: Cell 1795 has numbers 12345 and letters abcde
Matches: ['1795', '12345']
# Cell 1796 - regular expressions

import re

text_1796 = "Cell 1796 has numbers 12345 and letters abcde"
pattern_1796 = r"[0-9]+"
matches_1796 = re.findall(pattern_1796, text_1796)

print("Cell 1796 - regular expressions")
print("Text:", text_1796)
print("Matches:", matches_1796)
Cell 1796 - regular expressions
Text: Cell 1796 has numbers 12345 and letters abcde
Matches: ['1796', '12345']
# Cell 1797 - regular expressions

import re

text_1797 = "Cell 1797 has numbers 12345 and letters abcde"
pattern_1797 = r"[0-9]+"
matches_1797 = re.findall(pattern_1797, text_1797)

print("Cell 1797 - regular expressions")
print("Text:", text_1797)
print("Matches:", matches_1797)
Cell 1797 - regular expressions
Text: Cell 1797 has numbers 12345 and letters abcde
Matches: ['1797', '12345']
# Cell 1798 - regular expressions

import re

text_1798 = "Cell 1798 has numbers 12345 and letters abcde"
pattern_1798 = r"[0-9]+"
matches_1798 = re.findall(pattern_1798, text_1798)

print("Cell 1798 - regular expressions")
print("Text:", text_1798)
print("Matches:", matches_1798)
Cell 1798 - regular expressions
Text: Cell 1798 has numbers 12345 and letters abcde
Matches: ['1798', '12345']
# Cell 1799 - regular expressions

import re

text_1799 = "Cell 1799 has numbers 12345 and letters abcde"
pattern_1799 = r"[0-9]+"
matches_1799 = re.findall(pattern_1799, text_1799)

print("Cell 1799 - regular expressions")
print("Text:", text_1799)
print("Matches:", matches_1799)
Cell 1799 - regular expressions
Text: Cell 1799 has numbers 12345 and letters abcde
Matches: ['1799', '12345']
# Cell 1800 - regular expressions

import re

text_1800 = "Cell 1800 has numbers 12345 and letters abcde"
pattern_1800 = r"[0-9]+"
matches_1800 = re.findall(pattern_1800, text_1800)

print("Cell 1800 - regular expressions")
print("Text:", text_1800)
print("Matches:", matches_1800)
Cell 1800 - regular expressions
Text: Cell 1800 has numbers 12345 and letters abcde
Matches: ['1800', '12345']
# Cell 1801 - regular expressions

import re

text_1801 = "Cell 1801 has numbers 12345 and letters abcde"
pattern_1801 = r"[0-9]+"
matches_1801 = re.findall(pattern_1801, text_1801)

print("Cell 1801 - regular expressions")
print("Text:", text_1801)
print("Matches:", matches_1801)
Cell 1801 - regular expressions
Text: Cell 1801 has numbers 12345 and letters abcde
Matches: ['1801', '12345']
# Cell 1802 - regular expressions

import re

text_1802 = "Cell 1802 has numbers 12345 and letters abcde"
pattern_1802 = r"[0-9]+"
matches_1802 = re.findall(pattern_1802, text_1802)

print("Cell 1802 - regular expressions")
print("Text:", text_1802)
print("Matches:", matches_1802)
Cell 1802 - regular expressions
Text: Cell 1802 has numbers 12345 and letters abcde
Matches: ['1802', '12345']
# Cell 1803 - regular expressions

import re

text_1803 = "Cell 1803 has numbers 12345 and letters abcde"
pattern_1803 = r"[0-9]+"
matches_1803 = re.findall(pattern_1803, text_1803)

print("Cell 1803 - regular expressions")
print("Text:", text_1803)
print("Matches:", matches_1803)
Cell 1803 - regular expressions
Text: Cell 1803 has numbers 12345 and letters abcde
Matches: ['1803', '12345']
# Cell 1804 - regular expressions

import re

text_1804 = "Cell 1804 has numbers 12345 and letters abcde"
pattern_1804 = r"[0-9]+"
matches_1804 = re.findall(pattern_1804, text_1804)

print("Cell 1804 - regular expressions")
print("Text:", text_1804)
print("Matches:", matches_1804)
Cell 1804 - regular expressions
Text: Cell 1804 has numbers 12345 and letters abcde
Matches: ['1804', '12345']
# Cell 1805 - regular expressions

import re

text_1805 = "Cell 1805 has numbers 12345 and letters abcde"
pattern_1805 = r"[0-9]+"
matches_1805 = re.findall(pattern_1805, text_1805)

print("Cell 1805 - regular expressions")
print("Text:", text_1805)
print("Matches:", matches_1805)
Cell 1805 - regular expressions
Text: Cell 1805 has numbers 12345 and letters abcde
Matches: ['1805', '12345']
# Cell 1806 - regular expressions

import re

text_1806 = "Cell 1806 has numbers 12345 and letters abcde"
pattern_1806 = r"[0-9]+"
matches_1806 = re.findall(pattern_1806, text_1806)

print("Cell 1806 - regular expressions")
print("Text:", text_1806)
print("Matches:", matches_1806)
Cell 1806 - regular expressions
Text: Cell 1806 has numbers 12345 and letters abcde
Matches: ['1806', '12345']
# Cell 1807 - regular expressions

import re

text_1807 = "Cell 1807 has numbers 12345 and letters abcde"
pattern_1807 = r"[0-9]+"
matches_1807 = re.findall(pattern_1807, text_1807)

print("Cell 1807 - regular expressions")
print("Text:", text_1807)
print("Matches:", matches_1807)
Cell 1807 - regular expressions
Text: Cell 1807 has numbers 12345 and letters abcde
Matches: ['1807', '12345']
# Cell 1808 - regular expressions

import re

text_1808 = "Cell 1808 has numbers 12345 and letters abcde"
pattern_1808 = r"[0-9]+"
matches_1808 = re.findall(pattern_1808, text_1808)

print("Cell 1808 - regular expressions")
print("Text:", text_1808)
print("Matches:", matches_1808)
Cell 1808 - regular expressions
Text: Cell 1808 has numbers 12345 and letters abcde
Matches: ['1808', '12345']
# Cell 1809 - regular expressions

import re

text_1809 = "Cell 1809 has numbers 12345 and letters abcde"
pattern_1809 = r"[0-9]+"
matches_1809 = re.findall(pattern_1809, text_1809)

print("Cell 1809 - regular expressions")
print("Text:", text_1809)
print("Matches:", matches_1809)
Cell 1809 - regular expressions
Text: Cell 1809 has numbers 12345 and letters abcde
Matches: ['1809', '12345']
# Cell 1810 - regular expressions

import re

text_1810 = "Cell 1810 has numbers 12345 and letters abcde"
pattern_1810 = r"[0-9]+"
matches_1810 = re.findall(pattern_1810, text_1810)

print("Cell 1810 - regular expressions")
print("Text:", text_1810)
print("Matches:", matches_1810)
Cell 1810 - regular expressions
Text: Cell 1810 has numbers 12345 and letters abcde
Matches: ['1810', '12345']
# Cell 1811 - regular expressions

import re

text_1811 = "Cell 1811 has numbers 12345 and letters abcde"
pattern_1811 = r"[0-9]+"
matches_1811 = re.findall(pattern_1811, text_1811)

print("Cell 1811 - regular expressions")
print("Text:", text_1811)
print("Matches:", matches_1811)
Cell 1811 - regular expressions
Text: Cell 1811 has numbers 12345 and letters abcde
Matches: ['1811', '12345']
# Cell 1812 - regular expressions

import re

text_1812 = "Cell 1812 has numbers 12345 and letters abcde"
pattern_1812 = r"[0-9]+"
matches_1812 = re.findall(pattern_1812, text_1812)

print("Cell 1812 - regular expressions")
print("Text:", text_1812)
print("Matches:", matches_1812)
Cell 1812 - regular expressions
Text: Cell 1812 has numbers 12345 and letters abcde
Matches: ['1812', '12345']
# Cell 1813 - regular expressions

import re

text_1813 = "Cell 1813 has numbers 12345 and letters abcde"
pattern_1813 = r"[0-9]+"
matches_1813 = re.findall(pattern_1813, text_1813)

print("Cell 1813 - regular expressions")
print("Text:", text_1813)
print("Matches:", matches_1813)
Cell 1813 - regular expressions
Text: Cell 1813 has numbers 12345 and letters abcde
Matches: ['1813', '12345']
# Cell 1814 - regular expressions

import re

text_1814 = "Cell 1814 has numbers 12345 and letters abcde"
pattern_1814 = r"[0-9]+"
matches_1814 = re.findall(pattern_1814, text_1814)

print("Cell 1814 - regular expressions")
print("Text:", text_1814)
print("Matches:", matches_1814)
Cell 1814 - regular expressions
Text: Cell 1814 has numbers 12345 and letters abcde
Matches: ['1814', '12345']
# Cell 1815 - regular expressions

import re

text_1815 = "Cell 1815 has numbers 12345 and letters abcde"
pattern_1815 = r"[0-9]+"
matches_1815 = re.findall(pattern_1815, text_1815)

print("Cell 1815 - regular expressions")
print("Text:", text_1815)
print("Matches:", matches_1815)
Cell 1815 - regular expressions
Text: Cell 1815 has numbers 12345 and letters abcde
Matches: ['1815', '12345']
# Cell 1816 - regular expressions

import re

text_1816 = "Cell 1816 has numbers 12345 and letters abcde"
pattern_1816 = r"[0-9]+"
matches_1816 = re.findall(pattern_1816, text_1816)

print("Cell 1816 - regular expressions")
print("Text:", text_1816)
print("Matches:", matches_1816)
Cell 1816 - regular expressions
Text: Cell 1816 has numbers 12345 and letters abcde
Matches: ['1816', '12345']
# Cell 1817 - regular expressions

import re

text_1817 = "Cell 1817 has numbers 12345 and letters abcde"
pattern_1817 = r"[0-9]+"
matches_1817 = re.findall(pattern_1817, text_1817)

print("Cell 1817 - regular expressions")
print("Text:", text_1817)
print("Matches:", matches_1817)
Cell 1817 - regular expressions
Text: Cell 1817 has numbers 12345 and letters abcde
Matches: ['1817', '12345']
# Cell 1818 - regular expressions

import re

text_1818 = "Cell 1818 has numbers 12345 and letters abcde"
pattern_1818 = r"[0-9]+"
matches_1818 = re.findall(pattern_1818, text_1818)

print("Cell 1818 - regular expressions")
print("Text:", text_1818)
print("Matches:", matches_1818)
Cell 1818 - regular expressions
Text: Cell 1818 has numbers 12345 and letters abcde
Matches: ['1818', '12345']
# Cell 1819 - regular expressions

import re

text_1819 = "Cell 1819 has numbers 12345 and letters abcde"
pattern_1819 = r"[0-9]+"
matches_1819 = re.findall(pattern_1819, text_1819)

print("Cell 1819 - regular expressions")
print("Text:", text_1819)
print("Matches:", matches_1819)
Cell 1819 - regular expressions
Text: Cell 1819 has numbers 12345 and letters abcde
Matches: ['1819', '12345']
# Cell 1820 - regular expressions

import re

text_1820 = "Cell 1820 has numbers 12345 and letters abcde"
pattern_1820 = r"[0-9]+"
matches_1820 = re.findall(pattern_1820, text_1820)

print("Cell 1820 - regular expressions")
print("Text:", text_1820)
print("Matches:", matches_1820)
Cell 1820 - regular expressions
Text: Cell 1820 has numbers 12345 and letters abcde
Matches: ['1820', '12345']
# Cell 1821 - regular expressions

import re

text_1821 = "Cell 1821 has numbers 12345 and letters abcde"
pattern_1821 = r"[0-9]+"
matches_1821 = re.findall(pattern_1821, text_1821)

print("Cell 1821 - regular expressions")
print("Text:", text_1821)
print("Matches:", matches_1821)
Cell 1821 - regular expressions
Text: Cell 1821 has numbers 12345 and letters abcde
Matches: ['1821', '12345']
# Cell 1822 - regular expressions

import re

text_1822 = "Cell 1822 has numbers 12345 and letters abcde"
pattern_1822 = r"[0-9]+"
matches_1822 = re.findall(pattern_1822, text_1822)

print("Cell 1822 - regular expressions")
print("Text:", text_1822)
print("Matches:", matches_1822)
Cell 1822 - regular expressions
Text: Cell 1822 has numbers 12345 and letters abcde
Matches: ['1822', '12345']
# Cell 1823 - regular expressions

import re

text_1823 = "Cell 1823 has numbers 12345 and letters abcde"
pattern_1823 = r"[0-9]+"
matches_1823 = re.findall(pattern_1823, text_1823)

print("Cell 1823 - regular expressions")
print("Text:", text_1823)
print("Matches:", matches_1823)
Cell 1823 - regular expressions
Text: Cell 1823 has numbers 12345 and letters abcde
Matches: ['1823', '12345']
# Cell 1824 - regular expressions

import re

text_1824 = "Cell 1824 has numbers 12345 and letters abcde"
pattern_1824 = r"[0-9]+"
matches_1824 = re.findall(pattern_1824, text_1824)

print("Cell 1824 - regular expressions")
print("Text:", text_1824)
print("Matches:", matches_1824)
Cell 1824 - regular expressions
Text: Cell 1824 has numbers 12345 and letters abcde
Matches: ['1824', '12345']
# Cell 1825 - regular expressions

import re

text_1825 = "Cell 1825 has numbers 12345 and letters abcde"
pattern_1825 = r"[0-9]+"
matches_1825 = re.findall(pattern_1825, text_1825)

print("Cell 1825 - regular expressions")
print("Text:", text_1825)
print("Matches:", matches_1825)
Cell 1825 - regular expressions
Text: Cell 1825 has numbers 12345 and letters abcde
Matches: ['1825', '12345']
# Cell 1826 - regular expressions

import re

text_1826 = "Cell 1826 has numbers 12345 and letters abcde"
pattern_1826 = r"[0-9]+"
matches_1826 = re.findall(pattern_1826, text_1826)

print("Cell 1826 - regular expressions")
print("Text:", text_1826)
print("Matches:", matches_1826)
Cell 1826 - regular expressions
Text: Cell 1826 has numbers 12345 and letters abcde
Matches: ['1826', '12345']
# Cell 1827 - regular expressions

import re

text_1827 = "Cell 1827 has numbers 12345 and letters abcde"
pattern_1827 = r"[0-9]+"
matches_1827 = re.findall(pattern_1827, text_1827)

print("Cell 1827 - regular expressions")
print("Text:", text_1827)
print("Matches:", matches_1827)
Cell 1827 - regular expressions
Text: Cell 1827 has numbers 12345 and letters abcde
Matches: ['1827', '12345']
# Cell 1828 - regular expressions

import re

text_1828 = "Cell 1828 has numbers 12345 and letters abcde"
pattern_1828 = r"[0-9]+"
matches_1828 = re.findall(pattern_1828, text_1828)

print("Cell 1828 - regular expressions")
print("Text:", text_1828)
print("Matches:", matches_1828)
Cell 1828 - regular expressions
Text: Cell 1828 has numbers 12345 and letters abcde
Matches: ['1828', '12345']
# Cell 1829 - regular expressions

import re

text_1829 = "Cell 1829 has numbers 12345 and letters abcde"
pattern_1829 = r"[0-9]+"
matches_1829 = re.findall(pattern_1829, text_1829)

print("Cell 1829 - regular expressions")
print("Text:", text_1829)
print("Matches:", matches_1829)
Cell 1829 - regular expressions
Text: Cell 1829 has numbers 12345 and letters abcde
Matches: ['1829', '12345']
# Cell 1830 - regular expressions

import re

text_1830 = "Cell 1830 has numbers 12345 and letters abcde"
pattern_1830 = r"[0-9]+"
matches_1830 = re.findall(pattern_1830, text_1830)

print("Cell 1830 - regular expressions")
print("Text:", text_1830)
print("Matches:", matches_1830)
Cell 1830 - regular expressions
Text: Cell 1830 has numbers 12345 and letters abcde
Matches: ['1830', '12345']
# Cell 1831 - regular expressions

import re

text_1831 = "Cell 1831 has numbers 12345 and letters abcde"
pattern_1831 = r"[0-9]+"
matches_1831 = re.findall(pattern_1831, text_1831)

print("Cell 1831 - regular expressions")
print("Text:", text_1831)
print("Matches:", matches_1831)
Cell 1831 - regular expressions
Text: Cell 1831 has numbers 12345 and letters abcde
Matches: ['1831', '12345']
# Cell 1832 - regular expressions

import re

text_1832 = "Cell 1832 has numbers 12345 and letters abcde"
pattern_1832 = r"[0-9]+"
matches_1832 = re.findall(pattern_1832, text_1832)

print("Cell 1832 - regular expressions")
print("Text:", text_1832)
print("Matches:", matches_1832)
Cell 1832 - regular expressions
Text: Cell 1832 has numbers 12345 and letters abcde
Matches: ['1832', '12345']
# Cell 1833 - regular expressions

import re

text_1833 = "Cell 1833 has numbers 12345 and letters abcde"
pattern_1833 = r"[0-9]+"
matches_1833 = re.findall(pattern_1833, text_1833)

print("Cell 1833 - regular expressions")
print("Text:", text_1833)
print("Matches:", matches_1833)
Cell 1833 - regular expressions
Text: Cell 1833 has numbers 12345 and letters abcde
Matches: ['1833', '12345']
# Cell 1834 - regular expressions

import re

text_1834 = "Cell 1834 has numbers 12345 and letters abcde"
pattern_1834 = r"[0-9]+"
matches_1834 = re.findall(pattern_1834, text_1834)

print("Cell 1834 - regular expressions")
print("Text:", text_1834)
print("Matches:", matches_1834)
Cell 1834 - regular expressions
Text: Cell 1834 has numbers 12345 and letters abcde
Matches: ['1834', '12345']
# Cell 1835 - regular expressions

import re

text_1835 = "Cell 1835 has numbers 12345 and letters abcde"
pattern_1835 = r"[0-9]+"
matches_1835 = re.findall(pattern_1835, text_1835)

print("Cell 1835 - regular expressions")
print("Text:", text_1835)
print("Matches:", matches_1835)
Cell 1835 - regular expressions
Text: Cell 1835 has numbers 12345 and letters abcde
Matches: ['1835', '12345']
# Cell 1836 - regular expressions

import re

text_1836 = "Cell 1836 has numbers 12345 and letters abcde"
pattern_1836 = r"[0-9]+"
matches_1836 = re.findall(pattern_1836, text_1836)

print("Cell 1836 - regular expressions")
print("Text:", text_1836)
print("Matches:", matches_1836)
Cell 1836 - regular expressions
Text: Cell 1836 has numbers 12345 and letters abcde
Matches: ['1836', '12345']
# Cell 1837 - regular expressions

import re

text_1837 = "Cell 1837 has numbers 12345 and letters abcde"
pattern_1837 = r"[0-9]+"
matches_1837 = re.findall(pattern_1837, text_1837)

print("Cell 1837 - regular expressions")
print("Text:", text_1837)
print("Matches:", matches_1837)
Cell 1837 - regular expressions
Text: Cell 1837 has numbers 12345 and letters abcde
Matches: ['1837', '12345']
# Cell 1838 - regular expressions

import re

text_1838 = "Cell 1838 has numbers 12345 and letters abcde"
pattern_1838 = r"[0-9]+"
matches_1838 = re.findall(pattern_1838, text_1838)

print("Cell 1838 - regular expressions")
print("Text:", text_1838)
print("Matches:", matches_1838)
Cell 1838 - regular expressions
Text: Cell 1838 has numbers 12345 and letters abcde
Matches: ['1838', '12345']
# Cell 1839 - regular expressions

import re

text_1839 = "Cell 1839 has numbers 12345 and letters abcde"
pattern_1839 = r"[0-9]+"
matches_1839 = re.findall(pattern_1839, text_1839)

print("Cell 1839 - regular expressions")
print("Text:", text_1839)
print("Matches:", matches_1839)
Cell 1839 - regular expressions
Text: Cell 1839 has numbers 12345 and letters abcde
Matches: ['1839', '12345']
# Cell 1840 - regular expressions

import re

text_1840 = "Cell 1840 has numbers 12345 and letters abcde"
pattern_1840 = r"[0-9]+"
matches_1840 = re.findall(pattern_1840, text_1840)

print("Cell 1840 - regular expressions")
print("Text:", text_1840)
print("Matches:", matches_1840)
Cell 1840 - regular expressions
Text: Cell 1840 has numbers 12345 and letters abcde
Matches: ['1840', '12345']
# Cell 1841 - regular expressions

import re

text_1841 = "Cell 1841 has numbers 12345 and letters abcde"
pattern_1841 = r"[0-9]+"
matches_1841 = re.findall(pattern_1841, text_1841)

print("Cell 1841 - regular expressions")
print("Text:", text_1841)
print("Matches:", matches_1841)
Cell 1841 - regular expressions
Text: Cell 1841 has numbers 12345 and letters abcde
Matches: ['1841', '12345']
# Cell 1842 - regular expressions

import re

text_1842 = "Cell 1842 has numbers 12345 and letters abcde"
pattern_1842 = r"[0-9]+"
matches_1842 = re.findall(pattern_1842, text_1842)

print("Cell 1842 - regular expressions")
print("Text:", text_1842)
print("Matches:", matches_1842)
Cell 1842 - regular expressions
Text: Cell 1842 has numbers 12345 and letters abcde
Matches: ['1842', '12345']
# Cell 1843 - regular expressions

import re

text_1843 = "Cell 1843 has numbers 12345 and letters abcde"
pattern_1843 = r"[0-9]+"
matches_1843 = re.findall(pattern_1843, text_1843)

print("Cell 1843 - regular expressions")
print("Text:", text_1843)
print("Matches:", matches_1843)
Cell 1843 - regular expressions
Text: Cell 1843 has numbers 12345 and letters abcde
Matches: ['1843', '12345']
# Cell 1844 - regular expressions

import re

text_1844 = "Cell 1844 has numbers 12345 and letters abcde"
pattern_1844 = r"[0-9]+"
matches_1844 = re.findall(pattern_1844, text_1844)

print("Cell 1844 - regular expressions")
print("Text:", text_1844)
print("Matches:", matches_1844)
Cell 1844 - regular expressions
Text: Cell 1844 has numbers 12345 and letters abcde
Matches: ['1844', '12345']
# Cell 1845 - regular expressions

import re

text_1845 = "Cell 1845 has numbers 12345 and letters abcde"
pattern_1845 = r"[0-9]+"
matches_1845 = re.findall(pattern_1845, text_1845)

print("Cell 1845 - regular expressions")
print("Text:", text_1845)
print("Matches:", matches_1845)
Cell 1845 - regular expressions
Text: Cell 1845 has numbers 12345 and letters abcde
Matches: ['1845', '12345']
# Cell 1846 - regular expressions

import re

text_1846 = "Cell 1846 has numbers 12345 and letters abcde"
pattern_1846 = r"[0-9]+"
matches_1846 = re.findall(pattern_1846, text_1846)

print("Cell 1846 - regular expressions")
print("Text:", text_1846)
print("Matches:", matches_1846)
Cell 1846 - regular expressions
Text: Cell 1846 has numbers 12345 and letters abcde
Matches: ['1846', '12345']
# Cell 1847 - regular expressions

import re

text_1847 = "Cell 1847 has numbers 12345 and letters abcde"
pattern_1847 = r"[0-9]+"
matches_1847 = re.findall(pattern_1847, text_1847)

print("Cell 1847 - regular expressions")
print("Text:", text_1847)
print("Matches:", matches_1847)
Cell 1847 - regular expressions
Text: Cell 1847 has numbers 12345 and letters abcde
Matches: ['1847', '12345']
# Cell 1848 - regular expressions

import re

text_1848 = "Cell 1848 has numbers 12345 and letters abcde"
pattern_1848 = r"[0-9]+"
matches_1848 = re.findall(pattern_1848, text_1848)

print("Cell 1848 - regular expressions")
print("Text:", text_1848)
print("Matches:", matches_1848)
Cell 1848 - regular expressions
Text: Cell 1848 has numbers 12345 and letters abcde
Matches: ['1848', '12345']
# Cell 1849 - regular expressions

import re

text_1849 = "Cell 1849 has numbers 12345 and letters abcde"
pattern_1849 = r"[0-9]+"
matches_1849 = re.findall(pattern_1849, text_1849)

print("Cell 1849 - regular expressions")
print("Text:", text_1849)
print("Matches:", matches_1849)
Cell 1849 - regular expressions
Text: Cell 1849 has numbers 12345 and letters abcde
Matches: ['1849', '12345']
# Cell 1850 - regular expressions

import re

text_1850 = "Cell 1850 has numbers 12345 and letters abcde"
pattern_1850 = r"[0-9]+"
matches_1850 = re.findall(pattern_1850, text_1850)

print("Cell 1850 - regular expressions")
print("Text:", text_1850)
print("Matches:", matches_1850)
Cell 1850 - regular expressions
Text: Cell 1850 has numbers 12345 and letters abcde
Matches: ['1850', '12345']
# Cell 1851 - regular expressions

import re

text_1851 = "Cell 1851 has numbers 12345 and letters abcde"
pattern_1851 = r"[0-9]+"
matches_1851 = re.findall(pattern_1851, text_1851)

print("Cell 1851 - regular expressions")
print("Text:", text_1851)
print("Matches:", matches_1851)
Cell 1851 - regular expressions
Text: Cell 1851 has numbers 12345 and letters abcde
Matches: ['1851', '12345']
# Cell 1852 - regular expressions

import re

text_1852 = "Cell 1852 has numbers 12345 and letters abcde"
pattern_1852 = r"[0-9]+"
matches_1852 = re.findall(pattern_1852, text_1852)

print("Cell 1852 - regular expressions")
print("Text:", text_1852)
print("Matches:", matches_1852)
Cell 1852 - regular expressions
Text: Cell 1852 has numbers 12345 and letters abcde
Matches: ['1852', '12345']
# Cell 1853 - regular expressions

import re

text_1853 = "Cell 1853 has numbers 12345 and letters abcde"
pattern_1853 = r"[0-9]+"
matches_1853 = re.findall(pattern_1853, text_1853)

print("Cell 1853 - regular expressions")
print("Text:", text_1853)
print("Matches:", matches_1853)
Cell 1853 - regular expressions
Text: Cell 1853 has numbers 12345 and letters abcde
Matches: ['1853', '12345']
# Cell 1854 - regular expressions

import re

text_1854 = "Cell 1854 has numbers 12345 and letters abcde"
pattern_1854 = r"[0-9]+"
matches_1854 = re.findall(pattern_1854, text_1854)

print("Cell 1854 - regular expressions")
print("Text:", text_1854)
print("Matches:", matches_1854)
Cell 1854 - regular expressions
Text: Cell 1854 has numbers 12345 and letters abcde
Matches: ['1854', '12345']
# Cell 1855 - regular expressions

import re

text_1855 = "Cell 1855 has numbers 12345 and letters abcde"
pattern_1855 = r"[0-9]+"
matches_1855 = re.findall(pattern_1855, text_1855)

print("Cell 1855 - regular expressions")
print("Text:", text_1855)
print("Matches:", matches_1855)
Cell 1855 - regular expressions
Text: Cell 1855 has numbers 12345 and letters abcde
Matches: ['1855', '12345']
# Cell 1856 - regular expressions

import re

text_1856 = "Cell 1856 has numbers 12345 and letters abcde"
pattern_1856 = r"[0-9]+"
matches_1856 = re.findall(pattern_1856, text_1856)

print("Cell 1856 - regular expressions")
print("Text:", text_1856)
print("Matches:", matches_1856)
Cell 1856 - regular expressions
Text: Cell 1856 has numbers 12345 and letters abcde
Matches: ['1856', '12345']
# Cell 1857 - regular expressions

import re

text_1857 = "Cell 1857 has numbers 12345 and letters abcde"
pattern_1857 = r"[0-9]+"
matches_1857 = re.findall(pattern_1857, text_1857)

print("Cell 1857 - regular expressions")
print("Text:", text_1857)
print("Matches:", matches_1857)
Cell 1857 - regular expressions
Text: Cell 1857 has numbers 12345 and letters abcde
Matches: ['1857', '12345']
# Cell 1858 - regular expressions

import re

text_1858 = "Cell 1858 has numbers 12345 and letters abcde"
pattern_1858 = r"[0-9]+"
matches_1858 = re.findall(pattern_1858, text_1858)

print("Cell 1858 - regular expressions")
print("Text:", text_1858)
print("Matches:", matches_1858)
Cell 1858 - regular expressions
Text: Cell 1858 has numbers 12345 and letters abcde
Matches: ['1858', '12345']
# Cell 1859 - regular expressions

import re

text_1859 = "Cell 1859 has numbers 12345 and letters abcde"
pattern_1859 = r"[0-9]+"
matches_1859 = re.findall(pattern_1859, text_1859)

print("Cell 1859 - regular expressions")
print("Text:", text_1859)
print("Matches:", matches_1859)
Cell 1859 - regular expressions
Text: Cell 1859 has numbers 12345 and letters abcde
Matches: ['1859', '12345']
# Cell 1860 - regular expressions

import re

text_1860 = "Cell 1860 has numbers 12345 and letters abcde"
pattern_1860 = r"[0-9]+"
matches_1860 = re.findall(pattern_1860, text_1860)

print("Cell 1860 - regular expressions")
print("Text:", text_1860)
print("Matches:", matches_1860)
Cell 1860 - regular expressions
Text: Cell 1860 has numbers 12345 and letters abcde
Matches: ['1860', '12345']
# Cell 1861 - regular expressions

import re

text_1861 = "Cell 1861 has numbers 12345 and letters abcde"
pattern_1861 = r"[0-9]+"
matches_1861 = re.findall(pattern_1861, text_1861)

print("Cell 1861 - regular expressions")
print("Text:", text_1861)
print("Matches:", matches_1861)
Cell 1861 - regular expressions
Text: Cell 1861 has numbers 12345 and letters abcde
Matches: ['1861', '12345']
# Cell 1862 - regular expressions

import re

text_1862 = "Cell 1862 has numbers 12345 and letters abcde"
pattern_1862 = r"[0-9]+"
matches_1862 = re.findall(pattern_1862, text_1862)

print("Cell 1862 - regular expressions")
print("Text:", text_1862)
print("Matches:", matches_1862)
Cell 1862 - regular expressions
Text: Cell 1862 has numbers 12345 and letters abcde
Matches: ['1862', '12345']
# Cell 1863 - regular expressions

import re

text_1863 = "Cell 1863 has numbers 12345 and letters abcde"
pattern_1863 = r"[0-9]+"
matches_1863 = re.findall(pattern_1863, text_1863)

print("Cell 1863 - regular expressions")
print("Text:", text_1863)
print("Matches:", matches_1863)
Cell 1863 - regular expressions
Text: Cell 1863 has numbers 12345 and letters abcde
Matches: ['1863', '12345']
# Cell 1864 - regular expressions

import re

text_1864 = "Cell 1864 has numbers 12345 and letters abcde"
pattern_1864 = r"[0-9]+"
matches_1864 = re.findall(pattern_1864, text_1864)

print("Cell 1864 - regular expressions")
print("Text:", text_1864)
print("Matches:", matches_1864)
Cell 1864 - regular expressions
Text: Cell 1864 has numbers 12345 and letters abcde
Matches: ['1864', '12345']
# Cell 1865 - regular expressions

import re

text_1865 = "Cell 1865 has numbers 12345 and letters abcde"
pattern_1865 = r"[0-9]+"
matches_1865 = re.findall(pattern_1865, text_1865)

print("Cell 1865 - regular expressions")
print("Text:", text_1865)
print("Matches:", matches_1865)
Cell 1865 - regular expressions
Text: Cell 1865 has numbers 12345 and letters abcde
Matches: ['1865', '12345']
# Cell 1866 - regular expressions

import re

text_1866 = "Cell 1866 has numbers 12345 and letters abcde"
pattern_1866 = r"[0-9]+"
matches_1866 = re.findall(pattern_1866, text_1866)

print("Cell 1866 - regular expressions")
print("Text:", text_1866)
print("Matches:", matches_1866)
Cell 1866 - regular expressions
Text: Cell 1866 has numbers 12345 and letters abcde
Matches: ['1866', '12345']
# Cell 1867 - regular expressions

import re

text_1867 = "Cell 1867 has numbers 12345 and letters abcde"
pattern_1867 = r"[0-9]+"
matches_1867 = re.findall(pattern_1867, text_1867)

print("Cell 1867 - regular expressions")
print("Text:", text_1867)
print("Matches:", matches_1867)
Cell 1867 - regular expressions
Text: Cell 1867 has numbers 12345 and letters abcde
Matches: ['1867', '12345']
# Cell 1868 - regular expressions

import re

text_1868 = "Cell 1868 has numbers 12345 and letters abcde"
pattern_1868 = r"[0-9]+"
matches_1868 = re.findall(pattern_1868, text_1868)

print("Cell 1868 - regular expressions")
print("Text:", text_1868)
print("Matches:", matches_1868)
Cell 1868 - regular expressions
Text: Cell 1868 has numbers 12345 and letters abcde
Matches: ['1868', '12345']
# Cell 1869 - regular expressions

import re

text_1869 = "Cell 1869 has numbers 12345 and letters abcde"
pattern_1869 = r"[0-9]+"
matches_1869 = re.findall(pattern_1869, text_1869)

print("Cell 1869 - regular expressions")
print("Text:", text_1869)
print("Matches:", matches_1869)
Cell 1869 - regular expressions
Text: Cell 1869 has numbers 12345 and letters abcde
Matches: ['1869', '12345']
# Cell 1870 - regular expressions

import re

text_1870 = "Cell 1870 has numbers 12345 and letters abcde"
pattern_1870 = r"[0-9]+"
matches_1870 = re.findall(pattern_1870, text_1870)

print("Cell 1870 - regular expressions")
print("Text:", text_1870)
print("Matches:", matches_1870)
Cell 1870 - regular expressions
Text: Cell 1870 has numbers 12345 and letters abcde
Matches: ['1870', '12345']
# Cell 1871 - regular expressions

import re

text_1871 = "Cell 1871 has numbers 12345 and letters abcde"
pattern_1871 = r"[0-9]+"
matches_1871 = re.findall(pattern_1871, text_1871)

print("Cell 1871 - regular expressions")
print("Text:", text_1871)
print("Matches:", matches_1871)
Cell 1871 - regular expressions
Text: Cell 1871 has numbers 12345 and letters abcde
Matches: ['1871', '12345']
# Cell 1872 - regular expressions

import re

text_1872 = "Cell 1872 has numbers 12345 and letters abcde"
pattern_1872 = r"[0-9]+"
matches_1872 = re.findall(pattern_1872, text_1872)

print("Cell 1872 - regular expressions")
print("Text:", text_1872)
print("Matches:", matches_1872)
Cell 1872 - regular expressions
Text: Cell 1872 has numbers 12345 and letters abcde
Matches: ['1872', '12345']
# Cell 1873 - regular expressions

import re

text_1873 = "Cell 1873 has numbers 12345 and letters abcde"
pattern_1873 = r"[0-9]+"
matches_1873 = re.findall(pattern_1873, text_1873)

print("Cell 1873 - regular expressions")
print("Text:", text_1873)
print("Matches:", matches_1873)
Cell 1873 - regular expressions
Text: Cell 1873 has numbers 12345 and letters abcde
Matches: ['1873', '12345']
# Cell 1874 - regular expressions

import re

text_1874 = "Cell 1874 has numbers 12345 and letters abcde"
pattern_1874 = r"[0-9]+"
matches_1874 = re.findall(pattern_1874, text_1874)

print("Cell 1874 - regular expressions")
print("Text:", text_1874)
print("Matches:", matches_1874)
Cell 1874 - regular expressions
Text: Cell 1874 has numbers 12345 and letters abcde
Matches: ['1874', '12345']
# Cell 1875 - regular expressions

import re

text_1875 = "Cell 1875 has numbers 12345 and letters abcde"
pattern_1875 = r"[0-9]+"
matches_1875 = re.findall(pattern_1875, text_1875)

print("Cell 1875 - regular expressions")
print("Text:", text_1875)
print("Matches:", matches_1875)
Cell 1875 - regular expressions
Text: Cell 1875 has numbers 12345 and letters abcde
Matches: ['1875', '12345']
# Cell 1876 - regular expressions

import re

text_1876 = "Cell 1876 has numbers 12345 and letters abcde"
pattern_1876 = r"[0-9]+"
matches_1876 = re.findall(pattern_1876, text_1876)

print("Cell 1876 - regular expressions")
print("Text:", text_1876)
print("Matches:", matches_1876)
Cell 1876 - regular expressions
Text: Cell 1876 has numbers 12345 and letters abcde
Matches: ['1876', '12345']
# Cell 1877 - regular expressions

import re

text_1877 = "Cell 1877 has numbers 12345 and letters abcde"
pattern_1877 = r"[0-9]+"
matches_1877 = re.findall(pattern_1877, text_1877)

print("Cell 1877 - regular expressions")
print("Text:", text_1877)
print("Matches:", matches_1877)
Cell 1877 - regular expressions
Text: Cell 1877 has numbers 12345 and letters abcde
Matches: ['1877', '12345']
# Cell 1878 - regular expressions

import re

text_1878 = "Cell 1878 has numbers 12345 and letters abcde"
pattern_1878 = r"[0-9]+"
matches_1878 = re.findall(pattern_1878, text_1878)

print("Cell 1878 - regular expressions")
print("Text:", text_1878)
print("Matches:", matches_1878)
Cell 1878 - regular expressions
Text: Cell 1878 has numbers 12345 and letters abcde
Matches: ['1878', '12345']
# Cell 1879 - regular expressions

import re

text_1879 = "Cell 1879 has numbers 12345 and letters abcde"
pattern_1879 = r"[0-9]+"
matches_1879 = re.findall(pattern_1879, text_1879)

print("Cell 1879 - regular expressions")
print("Text:", text_1879)
print("Matches:", matches_1879)
Cell 1879 - regular expressions
Text: Cell 1879 has numbers 12345 and letters abcde
Matches: ['1879', '12345']
# Cell 1880 - regular expressions

import re

text_1880 = "Cell 1880 has numbers 12345 and letters abcde"
pattern_1880 = r"[0-9]+"
matches_1880 = re.findall(pattern_1880, text_1880)

print("Cell 1880 - regular expressions")
print("Text:", text_1880)
print("Matches:", matches_1880)
Cell 1880 - regular expressions
Text: Cell 1880 has numbers 12345 and letters abcde
Matches: ['1880', '12345']
# Cell 1881 - regular expressions

import re

text_1881 = "Cell 1881 has numbers 12345 and letters abcde"
pattern_1881 = r"[0-9]+"
matches_1881 = re.findall(pattern_1881, text_1881)

print("Cell 1881 - regular expressions")
print("Text:", text_1881)
print("Matches:", matches_1881)
Cell 1881 - regular expressions
Text: Cell 1881 has numbers 12345 and letters abcde
Matches: ['1881', '12345']
# Cell 1882 - regular expressions

import re

text_1882 = "Cell 1882 has numbers 12345 and letters abcde"
pattern_1882 = r"[0-9]+"
matches_1882 = re.findall(pattern_1882, text_1882)

print("Cell 1882 - regular expressions")
print("Text:", text_1882)
print("Matches:", matches_1882)
Cell 1882 - regular expressions
Text: Cell 1882 has numbers 12345 and letters abcde
Matches: ['1882', '12345']
# Cell 1883 - regular expressions

import re

text_1883 = "Cell 1883 has numbers 12345 and letters abcde"
pattern_1883 = r"[0-9]+"
matches_1883 = re.findall(pattern_1883, text_1883)

print("Cell 1883 - regular expressions")
print("Text:", text_1883)
print("Matches:", matches_1883)
Cell 1883 - regular expressions
Text: Cell 1883 has numbers 12345 and letters abcde
Matches: ['1883', '12345']
# Cell 1884 - regular expressions

import re

text_1884 = "Cell 1884 has numbers 12345 and letters abcde"
pattern_1884 = r"[0-9]+"
matches_1884 = re.findall(pattern_1884, text_1884)

print("Cell 1884 - regular expressions")
print("Text:", text_1884)
print("Matches:", matches_1884)
Cell 1884 - regular expressions
Text: Cell 1884 has numbers 12345 and letters abcde
Matches: ['1884', '12345']
# Cell 1885 - regular expressions

import re

text_1885 = "Cell 1885 has numbers 12345 and letters abcde"
pattern_1885 = r"[0-9]+"
matches_1885 = re.findall(pattern_1885, text_1885)

print("Cell 1885 - regular expressions")
print("Text:", text_1885)
print("Matches:", matches_1885)
Cell 1885 - regular expressions
Text: Cell 1885 has numbers 12345 and letters abcde
Matches: ['1885', '12345']
# Cell 1886 - regular expressions

import re

text_1886 = "Cell 1886 has numbers 12345 and letters abcde"
pattern_1886 = r"[0-9]+"
matches_1886 = re.findall(pattern_1886, text_1886)

print("Cell 1886 - regular expressions")
print("Text:", text_1886)
print("Matches:", matches_1886)
Cell 1886 - regular expressions
Text: Cell 1886 has numbers 12345 and letters abcde
Matches: ['1886', '12345']
# Cell 1887 - regular expressions

import re

text_1887 = "Cell 1887 has numbers 12345 and letters abcde"
pattern_1887 = r"[0-9]+"
matches_1887 = re.findall(pattern_1887, text_1887)

print("Cell 1887 - regular expressions")
print("Text:", text_1887)
print("Matches:", matches_1887)
Cell 1887 - regular expressions
Text: Cell 1887 has numbers 12345 and letters abcde
Matches: ['1887', '12345']
# Cell 1888 - regular expressions

import re

text_1888 = "Cell 1888 has numbers 12345 and letters abcde"
pattern_1888 = r"[0-9]+"
matches_1888 = re.findall(pattern_1888, text_1888)

print("Cell 1888 - regular expressions")
print("Text:", text_1888)
print("Matches:", matches_1888)
Cell 1888 - regular expressions
Text: Cell 1888 has numbers 12345 and letters abcde
Matches: ['1888', '12345']
# Cell 1889 - regular expressions

import re

text_1889 = "Cell 1889 has numbers 12345 and letters abcde"
pattern_1889 = r"[0-9]+"
matches_1889 = re.findall(pattern_1889, text_1889)

print("Cell 1889 - regular expressions")
print("Text:", text_1889)
print("Matches:", matches_1889)
Cell 1889 - regular expressions
Text: Cell 1889 has numbers 12345 and letters abcde
Matches: ['1889', '12345']
# Cell 1890 - regular expressions

import re

text_1890 = "Cell 1890 has numbers 12345 and letters abcde"
pattern_1890 = r"[0-9]+"
matches_1890 = re.findall(pattern_1890, text_1890)

print("Cell 1890 - regular expressions")
print("Text:", text_1890)
print("Matches:", matches_1890)
Cell 1890 - regular expressions
Text: Cell 1890 has numbers 12345 and letters abcde
Matches: ['1890', '12345']
# Cell 1891 - regular expressions

import re

text_1891 = "Cell 1891 has numbers 12345 and letters abcde"
pattern_1891 = r"[0-9]+"
matches_1891 = re.findall(pattern_1891, text_1891)

print("Cell 1891 - regular expressions")
print("Text:", text_1891)
print("Matches:", matches_1891)
Cell 1891 - regular expressions
Text: Cell 1891 has numbers 12345 and letters abcde
Matches: ['1891', '12345']
# Cell 1892 - regular expressions

import re

text_1892 = "Cell 1892 has numbers 12345 and letters abcde"
pattern_1892 = r"[0-9]+"
matches_1892 = re.findall(pattern_1892, text_1892)

print("Cell 1892 - regular expressions")
print("Text:", text_1892)
print("Matches:", matches_1892)
Cell 1892 - regular expressions
Text: Cell 1892 has numbers 12345 and letters abcde
Matches: ['1892', '12345']
# Cell 1893 - regular expressions

import re

text_1893 = "Cell 1893 has numbers 12345 and letters abcde"
pattern_1893 = r"[0-9]+"
matches_1893 = re.findall(pattern_1893, text_1893)

print("Cell 1893 - regular expressions")
print("Text:", text_1893)
print("Matches:", matches_1893)
Cell 1893 - regular expressions
Text: Cell 1893 has numbers 12345 and letters abcde
Matches: ['1893', '12345']
# Cell 1894 - regular expressions

import re

text_1894 = "Cell 1894 has numbers 12345 and letters abcde"
pattern_1894 = r"[0-9]+"
matches_1894 = re.findall(pattern_1894, text_1894)

print("Cell 1894 - regular expressions")
print("Text:", text_1894)
print("Matches:", matches_1894)
Cell 1894 - regular expressions
Text: Cell 1894 has numbers 12345 and letters abcde
Matches: ['1894', '12345']
# Cell 1895 - regular expressions

import re

text_1895 = "Cell 1895 has numbers 12345 and letters abcde"
pattern_1895 = r"[0-9]+"
matches_1895 = re.findall(pattern_1895, text_1895)

print("Cell 1895 - regular expressions")
print("Text:", text_1895)
print("Matches:", matches_1895)
Cell 1895 - regular expressions
Text: Cell 1895 has numbers 12345 and letters abcde
Matches: ['1895', '12345']
# Cell 1896 - regular expressions

import re

text_1896 = "Cell 1896 has numbers 12345 and letters abcde"
pattern_1896 = r"[0-9]+"
matches_1896 = re.findall(pattern_1896, text_1896)

print("Cell 1896 - regular expressions")
print("Text:", text_1896)
print("Matches:", matches_1896)
Cell 1896 - regular expressions
Text: Cell 1896 has numbers 12345 and letters abcde
Matches: ['1896', '12345']
# Cell 1897 - regular expressions

import re

text_1897 = "Cell 1897 has numbers 12345 and letters abcde"
pattern_1897 = r"[0-9]+"
matches_1897 = re.findall(pattern_1897, text_1897)

print("Cell 1897 - regular expressions")
print("Text:", text_1897)
print("Matches:", matches_1897)
Cell 1897 - regular expressions
Text: Cell 1897 has numbers 12345 and letters abcde
Matches: ['1897', '12345']
# Cell 1898 - regular expressions

import re

text_1898 = "Cell 1898 has numbers 12345 and letters abcde"
pattern_1898 = r"[0-9]+"
matches_1898 = re.findall(pattern_1898, text_1898)

print("Cell 1898 - regular expressions")
print("Text:", text_1898)
print("Matches:", matches_1898)
Cell 1898 - regular expressions
Text: Cell 1898 has numbers 12345 and letters abcde
Matches: ['1898', '12345']
# Cell 1899 - regular expressions

import re

text_1899 = "Cell 1899 has numbers 12345 and letters abcde"
pattern_1899 = r"[0-9]+"
matches_1899 = re.findall(pattern_1899, text_1899)

print("Cell 1899 - regular expressions")
print("Text:", text_1899)
print("Matches:", matches_1899)
Cell 1899 - regular expressions
Text: Cell 1899 has numbers 12345 and letters abcde
Matches: ['1899', '12345']
# Cell 1900 - regular expressions

import re

text_1900 = "Cell 1900 has numbers 12345 and letters abcde"
pattern_1900 = r"[0-9]+"
matches_1900 = re.findall(pattern_1900, text_1900)

print("Cell 1900 - regular expressions")
print("Text:", text_1900)
print("Matches:", matches_1900)
Cell 1900 - regular expressions
Text: Cell 1900 has numbers 12345 and letters abcde
Matches: ['1900', '12345']
# Cell 1901 - regular expressions

import re

text_1901 = "Cell 1901 has numbers 12345 and letters abcde"
pattern_1901 = r"[0-9]+"
matches_1901 = re.findall(pattern_1901, text_1901)

print("Cell 1901 - regular expressions")
print("Text:", text_1901)
print("Matches:", matches_1901)
Cell 1901 - regular expressions
Text: Cell 1901 has numbers 12345 and letters abcde
Matches: ['1901', '12345']
# Cell 1902 - regular expressions

import re

text_1902 = "Cell 1902 has numbers 12345 and letters abcde"
pattern_1902 = r"[0-9]+"
matches_1902 = re.findall(pattern_1902, text_1902)

print("Cell 1902 - regular expressions")
print("Text:", text_1902)
print("Matches:", matches_1902)
Cell 1902 - regular expressions
Text: Cell 1902 has numbers 12345 and letters abcde
Matches: ['1902', '12345']
# Cell 1903 - regular expressions

import re

text_1903 = "Cell 1903 has numbers 12345 and letters abcde"
pattern_1903 = r"[0-9]+"
matches_1903 = re.findall(pattern_1903, text_1903)

print("Cell 1903 - regular expressions")
print("Text:", text_1903)
print("Matches:", matches_1903)
Cell 1903 - regular expressions
Text: Cell 1903 has numbers 12345 and letters abcde
Matches: ['1903', '12345']
# Cell 1904 - regular expressions

import re

text_1904 = "Cell 1904 has numbers 12345 and letters abcde"
pattern_1904 = r"[0-9]+"
matches_1904 = re.findall(pattern_1904, text_1904)

print("Cell 1904 - regular expressions")
print("Text:", text_1904)
print("Matches:", matches_1904)
Cell 1904 - regular expressions
Text: Cell 1904 has numbers 12345 and letters abcde
Matches: ['1904', '12345']
# Cell 1905 - regular expressions

import re

text_1905 = "Cell 1905 has numbers 12345 and letters abcde"
pattern_1905 = r"[0-9]+"
matches_1905 = re.findall(pattern_1905, text_1905)

print("Cell 1905 - regular expressions")
print("Text:", text_1905)
print("Matches:", matches_1905)
Cell 1905 - regular expressions
Text: Cell 1905 has numbers 12345 and letters abcde
Matches: ['1905', '12345']
# Cell 1906 - regular expressions

import re

text_1906 = "Cell 1906 has numbers 12345 and letters abcde"
pattern_1906 = r"[0-9]+"
matches_1906 = re.findall(pattern_1906, text_1906)

print("Cell 1906 - regular expressions")
print("Text:", text_1906)
print("Matches:", matches_1906)
Cell 1906 - regular expressions
Text: Cell 1906 has numbers 12345 and letters abcde
Matches: ['1906', '12345']
# Cell 1907 - regular expressions

import re

text_1907 = "Cell 1907 has numbers 12345 and letters abcde"
pattern_1907 = r"[0-9]+"
matches_1907 = re.findall(pattern_1907, text_1907)

print("Cell 1907 - regular expressions")
print("Text:", text_1907)
print("Matches:", matches_1907)
Cell 1907 - regular expressions
Text: Cell 1907 has numbers 12345 and letters abcde
Matches: ['1907', '12345']
# Cell 1908 - regular expressions

import re

text_1908 = "Cell 1908 has numbers 12345 and letters abcde"
pattern_1908 = r"[0-9]+"
matches_1908 = re.findall(pattern_1908, text_1908)

print("Cell 1908 - regular expressions")
print("Text:", text_1908)
print("Matches:", matches_1908)
Cell 1908 - regular expressions
Text: Cell 1908 has numbers 12345 and letters abcde
Matches: ['1908', '12345']
# Cell 1909 - regular expressions

import re

text_1909 = "Cell 1909 has numbers 12345 and letters abcde"
pattern_1909 = r"[0-9]+"
matches_1909 = re.findall(pattern_1909, text_1909)

print("Cell 1909 - regular expressions")
print("Text:", text_1909)
print("Matches:", matches_1909)
Cell 1909 - regular expressions
Text: Cell 1909 has numbers 12345 and letters abcde
Matches: ['1909', '12345']
# Cell 1910 - regular expressions

import re

text_1910 = "Cell 1910 has numbers 12345 and letters abcde"
pattern_1910 = r"[0-9]+"
matches_1910 = re.findall(pattern_1910, text_1910)

print("Cell 1910 - regular expressions")
print("Text:", text_1910)
print("Matches:", matches_1910)
Cell 1910 - regular expressions
Text: Cell 1910 has numbers 12345 and letters abcde
Matches: ['1910', '12345']
# Cell 1911 - regular expressions

import re

text_1911 = "Cell 1911 has numbers 12345 and letters abcde"
pattern_1911 = r"[0-9]+"
matches_1911 = re.findall(pattern_1911, text_1911)

print("Cell 1911 - regular expressions")
print("Text:", text_1911)
print("Matches:", matches_1911)
Cell 1911 - regular expressions
Text: Cell 1911 has numbers 12345 and letters abcde
Matches: ['1911', '12345']
# Cell 1912 - regular expressions

import re

text_1912 = "Cell 1912 has numbers 12345 and letters abcde"
pattern_1912 = r"[0-9]+"
matches_1912 = re.findall(pattern_1912, text_1912)

print("Cell 1912 - regular expressions")
print("Text:", text_1912)
print("Matches:", matches_1912)
Cell 1912 - regular expressions
Text: Cell 1912 has numbers 12345 and letters abcde
Matches: ['1912', '12345']
# Cell 1913 - regular expressions

import re

text_1913 = "Cell 1913 has numbers 12345 and letters abcde"
pattern_1913 = r"[0-9]+"
matches_1913 = re.findall(pattern_1913, text_1913)

print("Cell 1913 - regular expressions")
print("Text:", text_1913)
print("Matches:", matches_1913)
Cell 1913 - regular expressions
Text: Cell 1913 has numbers 12345 and letters abcde
Matches: ['1913', '12345']
# Cell 1914 - regular expressions

import re

text_1914 = "Cell 1914 has numbers 12345 and letters abcde"
pattern_1914 = r"[0-9]+"
matches_1914 = re.findall(pattern_1914, text_1914)

print("Cell 1914 - regular expressions")
print("Text:", text_1914)
print("Matches:", matches_1914)
Cell 1914 - regular expressions
Text: Cell 1914 has numbers 12345 and letters abcde
Matches: ['1914', '12345']
# Cell 1915 - regular expressions

import re

text_1915 = "Cell 1915 has numbers 12345 and letters abcde"
pattern_1915 = r"[0-9]+"
matches_1915 = re.findall(pattern_1915, text_1915)

print("Cell 1915 - regular expressions")
print("Text:", text_1915)
print("Matches:", matches_1915)
Cell 1915 - regular expressions
Text: Cell 1915 has numbers 12345 and letters abcde
Matches: ['1915', '12345']
# Cell 1916 - regular expressions

import re

text_1916 = "Cell 1916 has numbers 12345 and letters abcde"
pattern_1916 = r"[0-9]+"
matches_1916 = re.findall(pattern_1916, text_1916)

print("Cell 1916 - regular expressions")
print("Text:", text_1916)
print("Matches:", matches_1916)
Cell 1916 - regular expressions
Text: Cell 1916 has numbers 12345 and letters abcde
Matches: ['1916', '12345']
# Cell 1917 - regular expressions

import re

text_1917 = "Cell 1917 has numbers 12345 and letters abcde"
pattern_1917 = r"[0-9]+"
matches_1917 = re.findall(pattern_1917, text_1917)

print("Cell 1917 - regular expressions")
print("Text:", text_1917)
print("Matches:", matches_1917)
Cell 1917 - regular expressions
Text: Cell 1917 has numbers 12345 and letters abcde
Matches: ['1917', '12345']
# Cell 1918 - regular expressions

import re

text_1918 = "Cell 1918 has numbers 12345 and letters abcde"
pattern_1918 = r"[0-9]+"
matches_1918 = re.findall(pattern_1918, text_1918)

print("Cell 1918 - regular expressions")
print("Text:", text_1918)
print("Matches:", matches_1918)
Cell 1918 - regular expressions
Text: Cell 1918 has numbers 12345 and letters abcde
Matches: ['1918', '12345']
# Cell 1919 - regular expressions

import re

text_1919 = "Cell 1919 has numbers 12345 and letters abcde"
pattern_1919 = r"[0-9]+"
matches_1919 = re.findall(pattern_1919, text_1919)

print("Cell 1919 - regular expressions")
print("Text:", text_1919)
print("Matches:", matches_1919)
Cell 1919 - regular expressions
Text: Cell 1919 has numbers 12345 and letters abcde
Matches: ['1919', '12345']
# Cell 1920 - regular expressions

import re

text_1920 = "Cell 1920 has numbers 12345 and letters abcde"
pattern_1920 = r"[0-9]+"
matches_1920 = re.findall(pattern_1920, text_1920)

print("Cell 1920 - regular expressions")
print("Text:", text_1920)
print("Matches:", matches_1920)
Cell 1920 - regular expressions
Text: Cell 1920 has numbers 12345 and letters abcde
Matches: ['1920', '12345']
# Cell 1921 - regular expressions

import re

text_1921 = "Cell 1921 has numbers 12345 and letters abcde"
pattern_1921 = r"[0-9]+"
matches_1921 = re.findall(pattern_1921, text_1921)

print("Cell 1921 - regular expressions")
print("Text:", text_1921)
print("Matches:", matches_1921)
Cell 1921 - regular expressions
Text: Cell 1921 has numbers 12345 and letters abcde
Matches: ['1921', '12345']
# Cell 1922 - regular expressions

import re

text_1922 = "Cell 1922 has numbers 12345 and letters abcde"
pattern_1922 = r"[0-9]+"
matches_1922 = re.findall(pattern_1922, text_1922)

print("Cell 1922 - regular expressions")
print("Text:", text_1922)
print("Matches:", matches_1922)
Cell 1922 - regular expressions
Text: Cell 1922 has numbers 12345 and letters abcde
Matches: ['1922', '12345']
# Cell 1923 - regular expressions

import re

text_1923 = "Cell 1923 has numbers 12345 and letters abcde"
pattern_1923 = r"[0-9]+"
matches_1923 = re.findall(pattern_1923, text_1923)

print("Cell 1923 - regular expressions")
print("Text:", text_1923)
print("Matches:", matches_1923)
Cell 1923 - regular expressions
Text: Cell 1923 has numbers 12345 and letters abcde
Matches: ['1923', '12345']
# Cell 1924 - regular expressions

import re

text_1924 = "Cell 1924 has numbers 12345 and letters abcde"
pattern_1924 = r"[0-9]+"
matches_1924 = re.findall(pattern_1924, text_1924)

print("Cell 1924 - regular expressions")
print("Text:", text_1924)
print("Matches:", matches_1924)
Cell 1924 - regular expressions
Text: Cell 1924 has numbers 12345 and letters abcde
Matches: ['1924', '12345']
# Cell 1925 - regular expressions

import re

text_1925 = "Cell 1925 has numbers 12345 and letters abcde"
pattern_1925 = r"[0-9]+"
matches_1925 = re.findall(pattern_1925, text_1925)

print("Cell 1925 - regular expressions")
print("Text:", text_1925)
print("Matches:", matches_1925)
Cell 1925 - regular expressions
Text: Cell 1925 has numbers 12345 and letters abcde
Matches: ['1925', '12345']
# Cell 1926 - regular expressions

import re

text_1926 = "Cell 1926 has numbers 12345 and letters abcde"
pattern_1926 = r"[0-9]+"
matches_1926 = re.findall(pattern_1926, text_1926)

print("Cell 1926 - regular expressions")
print("Text:", text_1926)
print("Matches:", matches_1926)
Cell 1926 - regular expressions
Text: Cell 1926 has numbers 12345 and letters abcde
Matches: ['1926', '12345']
# Cell 1927 - regular expressions

import re

text_1927 = "Cell 1927 has numbers 12345 and letters abcde"
pattern_1927 = r"[0-9]+"
matches_1927 = re.findall(pattern_1927, text_1927)

print("Cell 1927 - regular expressions")
print("Text:", text_1927)
print("Matches:", matches_1927)
Cell 1927 - regular expressions
Text: Cell 1927 has numbers 12345 and letters abcde
Matches: ['1927', '12345']
# Cell 1928 - regular expressions

import re

text_1928 = "Cell 1928 has numbers 12345 and letters abcde"
pattern_1928 = r"[0-9]+"
matches_1928 = re.findall(pattern_1928, text_1928)

print("Cell 1928 - regular expressions")
print("Text:", text_1928)
print("Matches:", matches_1928)
Cell 1928 - regular expressions
Text: Cell 1928 has numbers 12345 and letters abcde
Matches: ['1928', '12345']
# Cell 1929 - regular expressions

import re

text_1929 = "Cell 1929 has numbers 12345 and letters abcde"
pattern_1929 = r"[0-9]+"
matches_1929 = re.findall(pattern_1929, text_1929)

print("Cell 1929 - regular expressions")
print("Text:", text_1929)
print("Matches:", matches_1929)
Cell 1929 - regular expressions
Text: Cell 1929 has numbers 12345 and letters abcde
Matches: ['1929', '12345']
# Cell 1930 - regular expressions

import re

text_1930 = "Cell 1930 has numbers 12345 and letters abcde"
pattern_1930 = r"[0-9]+"
matches_1930 = re.findall(pattern_1930, text_1930)

print("Cell 1930 - regular expressions")
print("Text:", text_1930)
print("Matches:", matches_1930)
Cell 1930 - regular expressions
Text: Cell 1930 has numbers 12345 and letters abcde
Matches: ['1930', '12345']
# Cell 1931 - regular expressions

import re

text_1931 = "Cell 1931 has numbers 12345 and letters abcde"
pattern_1931 = r"[0-9]+"
matches_1931 = re.findall(pattern_1931, text_1931)

print("Cell 1931 - regular expressions")
print("Text:", text_1931)
print("Matches:", matches_1931)
Cell 1931 - regular expressions
Text: Cell 1931 has numbers 12345 and letters abcde
Matches: ['1931', '12345']
# Cell 1932 - regular expressions

import re

text_1932 = "Cell 1932 has numbers 12345 and letters abcde"
pattern_1932 = r"[0-9]+"
matches_1932 = re.findall(pattern_1932, text_1932)

print("Cell 1932 - regular expressions")
print("Text:", text_1932)
print("Matches:", matches_1932)
Cell 1932 - regular expressions
Text: Cell 1932 has numbers 12345 and letters abcde
Matches: ['1932', '12345']
# Cell 1933 - regular expressions

import re

text_1933 = "Cell 1933 has numbers 12345 and letters abcde"
pattern_1933 = r"[0-9]+"
matches_1933 = re.findall(pattern_1933, text_1933)

print("Cell 1933 - regular expressions")
print("Text:", text_1933)
print("Matches:", matches_1933)
Cell 1933 - regular expressions
Text: Cell 1933 has numbers 12345 and letters abcde
Matches: ['1933', '12345']
# Cell 1934 - regular expressions

import re

text_1934 = "Cell 1934 has numbers 12345 and letters abcde"
pattern_1934 = r"[0-9]+"
matches_1934 = re.findall(pattern_1934, text_1934)

print("Cell 1934 - regular expressions")
print("Text:", text_1934)
print("Matches:", matches_1934)
Cell 1934 - regular expressions
Text: Cell 1934 has numbers 12345 and letters abcde
Matches: ['1934', '12345']
# Cell 1935 - regular expressions

import re

text_1935 = "Cell 1935 has numbers 12345 and letters abcde"
pattern_1935 = r"[0-9]+"
matches_1935 = re.findall(pattern_1935, text_1935)

print("Cell 1935 - regular expressions")
print("Text:", text_1935)
print("Matches:", matches_1935)
Cell 1935 - regular expressions
Text: Cell 1935 has numbers 12345 and letters abcde
Matches: ['1935', '12345']
# Cell 1936 - regular expressions

import re

text_1936 = "Cell 1936 has numbers 12345 and letters abcde"
pattern_1936 = r"[0-9]+"
matches_1936 = re.findall(pattern_1936, text_1936)

print("Cell 1936 - regular expressions")
print("Text:", text_1936)
print("Matches:", matches_1936)
Cell 1936 - regular expressions
Text: Cell 1936 has numbers 12345 and letters abcde
Matches: ['1936', '12345']
# Cell 1937 - regular expressions

import re

text_1937 = "Cell 1937 has numbers 12345 and letters abcde"
pattern_1937 = r"[0-9]+"
matches_1937 = re.findall(pattern_1937, text_1937)

print("Cell 1937 - regular expressions")
print("Text:", text_1937)
print("Matches:", matches_1937)
Cell 1937 - regular expressions
Text: Cell 1937 has numbers 12345 and letters abcde
Matches: ['1937', '12345']
# Cell 1938 - regular expressions

import re

text_1938 = "Cell 1938 has numbers 12345 and letters abcde"
pattern_1938 = r"[0-9]+"
matches_1938 = re.findall(pattern_1938, text_1938)

print("Cell 1938 - regular expressions")
print("Text:", text_1938)
print("Matches:", matches_1938)
Cell 1938 - regular expressions
Text: Cell 1938 has numbers 12345 and letters abcde
Matches: ['1938', '12345']
# Cell 1939 - regular expressions

import re

text_1939 = "Cell 1939 has numbers 12345 and letters abcde"
pattern_1939 = r"[0-9]+"
matches_1939 = re.findall(pattern_1939, text_1939)

print("Cell 1939 - regular expressions")
print("Text:", text_1939)
print("Matches:", matches_1939)
Cell 1939 - regular expressions
Text: Cell 1939 has numbers 12345 and letters abcde
Matches: ['1939', '12345']
# Cell 1940 - regular expressions

import re

text_1940 = "Cell 1940 has numbers 12345 and letters abcde"
pattern_1940 = r"[0-9]+"
matches_1940 = re.findall(pattern_1940, text_1940)

print("Cell 1940 - regular expressions")
print("Text:", text_1940)
print("Matches:", matches_1940)
Cell 1940 - regular expressions
Text: Cell 1940 has numbers 12345 and letters abcde
Matches: ['1940', '12345']
# Cell 1941 - regular expressions

import re

text_1941 = "Cell 1941 has numbers 12345 and letters abcde"
pattern_1941 = r"[0-9]+"
matches_1941 = re.findall(pattern_1941, text_1941)

print("Cell 1941 - regular expressions")
print("Text:", text_1941)
print("Matches:", matches_1941)
Cell 1941 - regular expressions
Text: Cell 1941 has numbers 12345 and letters abcde
Matches: ['1941', '12345']
# Cell 1942 - regular expressions

import re

text_1942 = "Cell 1942 has numbers 12345 and letters abcde"
pattern_1942 = r"[0-9]+"
matches_1942 = re.findall(pattern_1942, text_1942)

print("Cell 1942 - regular expressions")
print("Text:", text_1942)
print("Matches:", matches_1942)
Cell 1942 - regular expressions
Text: Cell 1942 has numbers 12345 and letters abcde
Matches: ['1942', '12345']
# Cell 1943 - regular expressions

import re

text_1943 = "Cell 1943 has numbers 12345 and letters abcde"
pattern_1943 = r"[0-9]+"
matches_1943 = re.findall(pattern_1943, text_1943)

print("Cell 1943 - regular expressions")
print("Text:", text_1943)
print("Matches:", matches_1943)
Cell 1943 - regular expressions
Text: Cell 1943 has numbers 12345 and letters abcde
Matches: ['1943', '12345']
# Cell 1944 - regular expressions

import re

text_1944 = "Cell 1944 has numbers 12345 and letters abcde"
pattern_1944 = r"[0-9]+"
matches_1944 = re.findall(pattern_1944, text_1944)

print("Cell 1944 - regular expressions")
print("Text:", text_1944)
print("Matches:", matches_1944)
Cell 1944 - regular expressions
Text: Cell 1944 has numbers 12345 and letters abcde
Matches: ['1944', '12345']
# Cell 1945 - regular expressions

import re

text_1945 = "Cell 1945 has numbers 12345 and letters abcde"
pattern_1945 = r"[0-9]+"
matches_1945 = re.findall(pattern_1945, text_1945)

print("Cell 1945 - regular expressions")
print("Text:", text_1945)
print("Matches:", matches_1945)
Cell 1945 - regular expressions
Text: Cell 1945 has numbers 12345 and letters abcde
Matches: ['1945', '12345']
# Cell 1946 - regular expressions

import re

text_1946 = "Cell 1946 has numbers 12345 and letters abcde"
pattern_1946 = r"[0-9]+"
matches_1946 = re.findall(pattern_1946, text_1946)

print("Cell 1946 - regular expressions")
print("Text:", text_1946)
print("Matches:", matches_1946)
Cell 1946 - regular expressions
Text: Cell 1946 has numbers 12345 and letters abcde
Matches: ['1946', '12345']
# Cell 1947 - regular expressions

import re

text_1947 = "Cell 1947 has numbers 12345 and letters abcde"
pattern_1947 = r"[0-9]+"
matches_1947 = re.findall(pattern_1947, text_1947)

print("Cell 1947 - regular expressions")
print("Text:", text_1947)
print("Matches:", matches_1947)
Cell 1947 - regular expressions
Text: Cell 1947 has numbers 12345 and letters abcde
Matches: ['1947', '12345']
# Cell 1948 - regular expressions

import re

text_1948 = "Cell 1948 has numbers 12345 and letters abcde"
pattern_1948 = r"[0-9]+"
matches_1948 = re.findall(pattern_1948, text_1948)

print("Cell 1948 - regular expressions")
print("Text:", text_1948)
print("Matches:", matches_1948)
Cell 1948 - regular expressions
Text: Cell 1948 has numbers 12345 and letters abcde
Matches: ['1948', '12345']
# Cell 1949 - regular expressions

import re

text_1949 = "Cell 1949 has numbers 12345 and letters abcde"
pattern_1949 = r"[0-9]+"
matches_1949 = re.findall(pattern_1949, text_1949)

print("Cell 1949 - regular expressions")
print("Text:", text_1949)
print("Matches:", matches_1949)
Cell 1949 - regular expressions
Text: Cell 1949 has numbers 12345 and letters abcde
Matches: ['1949', '12345']
# Cell 1950 - regular expressions

import re

text_1950 = "Cell 1950 has numbers 12345 and letters abcde"
pattern_1950 = r"[0-9]+"
matches_1950 = re.findall(pattern_1950, text_1950)

print("Cell 1950 - regular expressions")
print("Text:", text_1950)
print("Matches:", matches_1950)
Cell 1950 - regular expressions
Text: Cell 1950 has numbers 12345 and letters abcde
Matches: ['1950', '12345']
# Cell 1951 - regular expressions

import re

text_1951 = "Cell 1951 has numbers 12345 and letters abcde"
pattern_1951 = r"[0-9]+"
matches_1951 = re.findall(pattern_1951, text_1951)

print("Cell 1951 - regular expressions")
print("Text:", text_1951)
print("Matches:", matches_1951)
Cell 1951 - regular expressions
Text: Cell 1951 has numbers 12345 and letters abcde
Matches: ['1951', '12345']
# Cell 1952 - regular expressions

import re

text_1952 = "Cell 1952 has numbers 12345 and letters abcde"
pattern_1952 = r"[0-9]+"
matches_1952 = re.findall(pattern_1952, text_1952)

print("Cell 1952 - regular expressions")
print("Text:", text_1952)
print("Matches:", matches_1952)
Cell 1952 - regular expressions
Text: Cell 1952 has numbers 12345 and letters abcde
Matches: ['1952', '12345']
# Cell 1953 - regular expressions

import re

text_1953 = "Cell 1953 has numbers 12345 and letters abcde"
pattern_1953 = r"[0-9]+"
matches_1953 = re.findall(pattern_1953, text_1953)

print("Cell 1953 - regular expressions")
print("Text:", text_1953)
print("Matches:", matches_1953)
Cell 1953 - regular expressions
Text: Cell 1953 has numbers 12345 and letters abcde
Matches: ['1953', '12345']
# Cell 1954 - regular expressions

import re

text_1954 = "Cell 1954 has numbers 12345 and letters abcde"
pattern_1954 = r"[0-9]+"
matches_1954 = re.findall(pattern_1954, text_1954)

print("Cell 1954 - regular expressions")
print("Text:", text_1954)
print("Matches:", matches_1954)
Cell 1954 - regular expressions
Text: Cell 1954 has numbers 12345 and letters abcde
Matches: ['1954', '12345']
# Cell 1955 - regular expressions

import re

text_1955 = "Cell 1955 has numbers 12345 and letters abcde"
pattern_1955 = r"[0-9]+"
matches_1955 = re.findall(pattern_1955, text_1955)

print("Cell 1955 - regular expressions")
print("Text:", text_1955)
print("Matches:", matches_1955)
Cell 1955 - regular expressions
Text: Cell 1955 has numbers 12345 and letters abcde
Matches: ['1955', '12345']
# Cell 1956 - regular expressions

import re

text_1956 = "Cell 1956 has numbers 12345 and letters abcde"
pattern_1956 = r"[0-9]+"
matches_1956 = re.findall(pattern_1956, text_1956)

print("Cell 1956 - regular expressions")
print("Text:", text_1956)
print("Matches:", matches_1956)
Cell 1956 - regular expressions
Text: Cell 1956 has numbers 12345 and letters abcde
Matches: ['1956', '12345']
# Cell 1957 - regular expressions

import re

text_1957 = "Cell 1957 has numbers 12345 and letters abcde"
pattern_1957 = r"[0-9]+"
matches_1957 = re.findall(pattern_1957, text_1957)

print("Cell 1957 - regular expressions")
print("Text:", text_1957)
print("Matches:", matches_1957)
Cell 1957 - regular expressions
Text: Cell 1957 has numbers 12345 and letters abcde
Matches: ['1957', '12345']
# Cell 1958 - regular expressions

import re

text_1958 = "Cell 1958 has numbers 12345 and letters abcde"
pattern_1958 = r"[0-9]+"
matches_1958 = re.findall(pattern_1958, text_1958)

print("Cell 1958 - regular expressions")
print("Text:", text_1958)
print("Matches:", matches_1958)
Cell 1958 - regular expressions
Text: Cell 1958 has numbers 12345 and letters abcde
Matches: ['1958', '12345']
# Cell 1959 - regular expressions

import re

text_1959 = "Cell 1959 has numbers 12345 and letters abcde"
pattern_1959 = r"[0-9]+"
matches_1959 = re.findall(pattern_1959, text_1959)

print("Cell 1959 - regular expressions")
print("Text:", text_1959)
print("Matches:", matches_1959)
Cell 1959 - regular expressions
Text: Cell 1959 has numbers 12345 and letters abcde
Matches: ['1959', '12345']
# Cell 1960 - regular expressions

import re

text_1960 = "Cell 1960 has numbers 12345 and letters abcde"
pattern_1960 = r"[0-9]+"
matches_1960 = re.findall(pattern_1960, text_1960)

print("Cell 1960 - regular expressions")
print("Text:", text_1960)
print("Matches:", matches_1960)
Cell 1960 - regular expressions
Text: Cell 1960 has numbers 12345 and letters abcde
Matches: ['1960', '12345']
# Cell 1961 - regular expressions

import re

text_1961 = "Cell 1961 has numbers 12345 and letters abcde"
pattern_1961 = r"[0-9]+"
matches_1961 = re.findall(pattern_1961, text_1961)

print("Cell 1961 - regular expressions")
print("Text:", text_1961)
print("Matches:", matches_1961)
Cell 1961 - regular expressions
Text: Cell 1961 has numbers 12345 and letters abcde
Matches: ['1961', '12345']
# Cell 1962 - regular expressions

import re

text_1962 = "Cell 1962 has numbers 12345 and letters abcde"
pattern_1962 = r"[0-9]+"
matches_1962 = re.findall(pattern_1962, text_1962)

print("Cell 1962 - regular expressions")
print("Text:", text_1962)
print("Matches:", matches_1962)
Cell 1962 - regular expressions
Text: Cell 1962 has numbers 12345 and letters abcde
Matches: ['1962', '12345']
# Cell 1963 - regular expressions

import re

text_1963 = "Cell 1963 has numbers 12345 and letters abcde"
pattern_1963 = r"[0-9]+"
matches_1963 = re.findall(pattern_1963, text_1963)

print("Cell 1963 - regular expressions")
print("Text:", text_1963)
print("Matches:", matches_1963)
Cell 1963 - regular expressions
Text: Cell 1963 has numbers 12345 and letters abcde
Matches: ['1963', '12345']
# Cell 1964 - regular expressions

import re

text_1964 = "Cell 1964 has numbers 12345 and letters abcde"
pattern_1964 = r"[0-9]+"
matches_1964 = re.findall(pattern_1964, text_1964)

print("Cell 1964 - regular expressions")
print("Text:", text_1964)
print("Matches:", matches_1964)
Cell 1964 - regular expressions
Text: Cell 1964 has numbers 12345 and letters abcde
Matches: ['1964', '12345']
# Cell 1965 - regular expressions

import re

text_1965 = "Cell 1965 has numbers 12345 and letters abcde"
pattern_1965 = r"[0-9]+"
matches_1965 = re.findall(pattern_1965, text_1965)

print("Cell 1965 - regular expressions")
print("Text:", text_1965)
print("Matches:", matches_1965)
Cell 1965 - regular expressions
Text: Cell 1965 has numbers 12345 and letters abcde
Matches: ['1965', '12345']
# Cell 1966 - regular expressions

import re

text_1966 = "Cell 1966 has numbers 12345 and letters abcde"
pattern_1966 = r"[0-9]+"
matches_1966 = re.findall(pattern_1966, text_1966)

print("Cell 1966 - regular expressions")
print("Text:", text_1966)
print("Matches:", matches_1966)
Cell 1966 - regular expressions
Text: Cell 1966 has numbers 12345 and letters abcde
Matches: ['1966', '12345']
# Cell 1967 - regular expressions

import re

text_1967 = "Cell 1967 has numbers 12345 and letters abcde"
pattern_1967 = r"[0-9]+"
matches_1967 = re.findall(pattern_1967, text_1967)

print("Cell 1967 - regular expressions")
print("Text:", text_1967)
print("Matches:", matches_1967)
Cell 1967 - regular expressions
Text: Cell 1967 has numbers 12345 and letters abcde
Matches: ['1967', '12345']
# Cell 1968 - regular expressions

import re

text_1968 = "Cell 1968 has numbers 12345 and letters abcde"
pattern_1968 = r"[0-9]+"
matches_1968 = re.findall(pattern_1968, text_1968)

print("Cell 1968 - regular expressions")
print("Text:", text_1968)
print("Matches:", matches_1968)
Cell 1968 - regular expressions
Text: Cell 1968 has numbers 12345 and letters abcde
Matches: ['1968', '12345']
# Cell 1969 - regular expressions

import re

text_1969 = "Cell 1969 has numbers 12345 and letters abcde"
pattern_1969 = r"[0-9]+"
matches_1969 = re.findall(pattern_1969, text_1969)

print("Cell 1969 - regular expressions")
print("Text:", text_1969)
print("Matches:", matches_1969)
Cell 1969 - regular expressions
Text: Cell 1969 has numbers 12345 and letters abcde
Matches: ['1969', '12345']
# Cell 1970 - regular expressions

import re

text_1970 = "Cell 1970 has numbers 12345 and letters abcde"
pattern_1970 = r"[0-9]+"
matches_1970 = re.findall(pattern_1970, text_1970)

print("Cell 1970 - regular expressions")
print("Text:", text_1970)
print("Matches:", matches_1970)
Cell 1970 - regular expressions
Text: Cell 1970 has numbers 12345 and letters abcde
Matches: ['1970', '12345']
# Cell 1971 - regular expressions

import re

text_1971 = "Cell 1971 has numbers 12345 and letters abcde"
pattern_1971 = r"[0-9]+"
matches_1971 = re.findall(pattern_1971, text_1971)

print("Cell 1971 - regular expressions")
print("Text:", text_1971)
print("Matches:", matches_1971)
Cell 1971 - regular expressions
Text: Cell 1971 has numbers 12345 and letters abcde
Matches: ['1971', '12345']
# Cell 1972 - regular expressions

import re

text_1972 = "Cell 1972 has numbers 12345 and letters abcde"
pattern_1972 = r"[0-9]+"
matches_1972 = re.findall(pattern_1972, text_1972)

print("Cell 1972 - regular expressions")
print("Text:", text_1972)
print("Matches:", matches_1972)
Cell 1972 - regular expressions
Text: Cell 1972 has numbers 12345 and letters abcde
Matches: ['1972', '12345']
# Cell 1973 - regular expressions

import re

text_1973 = "Cell 1973 has numbers 12345 and letters abcde"
pattern_1973 = r"[0-9]+"
matches_1973 = re.findall(pattern_1973, text_1973)

print("Cell 1973 - regular expressions")
print("Text:", text_1973)
print("Matches:", matches_1973)
Cell 1973 - regular expressions
Text: Cell 1973 has numbers 12345 and letters abcde
Matches: ['1973', '12345']
# Cell 1974 - regular expressions

import re

text_1974 = "Cell 1974 has numbers 12345 and letters abcde"
pattern_1974 = r"[0-9]+"
matches_1974 = re.findall(pattern_1974, text_1974)

print("Cell 1974 - regular expressions")
print("Text:", text_1974)
print("Matches:", matches_1974)
Cell 1974 - regular expressions
Text: Cell 1974 has numbers 12345 and letters abcde
Matches: ['1974', '12345']
# Cell 1975 - regular expressions

import re

text_1975 = "Cell 1975 has numbers 12345 and letters abcde"
pattern_1975 = r"[0-9]+"
matches_1975 = re.findall(pattern_1975, text_1975)

print("Cell 1975 - regular expressions")
print("Text:", text_1975)
print("Matches:", matches_1975)
Cell 1975 - regular expressions
Text: Cell 1975 has numbers 12345 and letters abcde
Matches: ['1975', '12345']
# Cell 1976 - regular expressions

import re

text_1976 = "Cell 1976 has numbers 12345 and letters abcde"
pattern_1976 = r"[0-9]+"
matches_1976 = re.findall(pattern_1976, text_1976)

print("Cell 1976 - regular expressions")
print("Text:", text_1976)
print("Matches:", matches_1976)
Cell 1976 - regular expressions
Text: Cell 1976 has numbers 12345 and letters abcde
Matches: ['1976', '12345']
# Cell 1977 - regular expressions

import re

text_1977 = "Cell 1977 has numbers 12345 and letters abcde"
pattern_1977 = r"[0-9]+"
matches_1977 = re.findall(pattern_1977, text_1977)

print("Cell 1977 - regular expressions")
print("Text:", text_1977)
print("Matches:", matches_1977)
Cell 1977 - regular expressions
Text: Cell 1977 has numbers 12345 and letters abcde
Matches: ['1977', '12345']
# Cell 1978 - regular expressions

import re

text_1978 = "Cell 1978 has numbers 12345 and letters abcde"
pattern_1978 = r"[0-9]+"
matches_1978 = re.findall(pattern_1978, text_1978)

print("Cell 1978 - regular expressions")
print("Text:", text_1978)
print("Matches:", matches_1978)
Cell 1978 - regular expressions
Text: Cell 1978 has numbers 12345 and letters abcde
Matches: ['1978', '12345']
# Cell 1979 - regular expressions

import re

text_1979 = "Cell 1979 has numbers 12345 and letters abcde"
pattern_1979 = r"[0-9]+"
matches_1979 = re.findall(pattern_1979, text_1979)

print("Cell 1979 - regular expressions")
print("Text:", text_1979)
print("Matches:", matches_1979)
Cell 1979 - regular expressions
Text: Cell 1979 has numbers 12345 and letters abcde
Matches: ['1979', '12345']
# Cell 1980 - regular expressions

import re

text_1980 = "Cell 1980 has numbers 12345 and letters abcde"
pattern_1980 = r"[0-9]+"
matches_1980 = re.findall(pattern_1980, text_1980)

print("Cell 1980 - regular expressions")
print("Text:", text_1980)
print("Matches:", matches_1980)
Cell 1980 - regular expressions
Text: Cell 1980 has numbers 12345 and letters abcde
Matches: ['1980', '12345']
# Cell 1981 - regular expressions

import re

text_1981 = "Cell 1981 has numbers 12345 and letters abcde"
pattern_1981 = r"[0-9]+"
matches_1981 = re.findall(pattern_1981, text_1981)

print("Cell 1981 - regular expressions")
print("Text:", text_1981)
print("Matches:", matches_1981)
Cell 1981 - regular expressions
Text: Cell 1981 has numbers 12345 and letters abcde
Matches: ['1981', '12345']
# Cell 1982 - regular expressions

import re

text_1982 = "Cell 1982 has numbers 12345 and letters abcde"
pattern_1982 = r"[0-9]+"
matches_1982 = re.findall(pattern_1982, text_1982)

print("Cell 1982 - regular expressions")
print("Text:", text_1982)
print("Matches:", matches_1982)
Cell 1982 - regular expressions
Text: Cell 1982 has numbers 12345 and letters abcde
Matches: ['1982', '12345']
# Cell 1983 - regular expressions

import re

text_1983 = "Cell 1983 has numbers 12345 and letters abcde"
pattern_1983 = r"[0-9]+"
matches_1983 = re.findall(pattern_1983, text_1983)

print("Cell 1983 - regular expressions")
print("Text:", text_1983)
print("Matches:", matches_1983)
Cell 1983 - regular expressions
Text: Cell 1983 has numbers 12345 and letters abcde
Matches: ['1983', '12345']
# Cell 1984 - regular expressions

import re

text_1984 = "Cell 1984 has numbers 12345 and letters abcde"
pattern_1984 = r"[0-9]+"
matches_1984 = re.findall(pattern_1984, text_1984)

print("Cell 1984 - regular expressions")
print("Text:", text_1984)
print("Matches:", matches_1984)
Cell 1984 - regular expressions
Text: Cell 1984 has numbers 12345 and letters abcde
Matches: ['1984', '12345']
# Cell 1985 - regular expressions

import re

text_1985 = "Cell 1985 has numbers 12345 and letters abcde"
pattern_1985 = r"[0-9]+"
matches_1985 = re.findall(pattern_1985, text_1985)

print("Cell 1985 - regular expressions")
print("Text:", text_1985)
print("Matches:", matches_1985)
Cell 1985 - regular expressions
Text: Cell 1985 has numbers 12345 and letters abcde
Matches: ['1985', '12345']
# Cell 1986 - regular expressions

import re

text_1986 = "Cell 1986 has numbers 12345 and letters abcde"
pattern_1986 = r"[0-9]+"
matches_1986 = re.findall(pattern_1986, text_1986)

print("Cell 1986 - regular expressions")
print("Text:", text_1986)
print("Matches:", matches_1986)
Cell 1986 - regular expressions
Text: Cell 1986 has numbers 12345 and letters abcde
Matches: ['1986', '12345']
# Cell 1987 - regular expressions

import re

text_1987 = "Cell 1987 has numbers 12345 and letters abcde"
pattern_1987 = r"[0-9]+"
matches_1987 = re.findall(pattern_1987, text_1987)

print("Cell 1987 - regular expressions")
print("Text:", text_1987)
print("Matches:", matches_1987)
Cell 1987 - regular expressions
Text: Cell 1987 has numbers 12345 and letters abcde
Matches: ['1987', '12345']
# Cell 1988 - regular expressions

import re

text_1988 = "Cell 1988 has numbers 12345 and letters abcde"
pattern_1988 = r"[0-9]+"
matches_1988 = re.findall(pattern_1988, text_1988)

print("Cell 1988 - regular expressions")
print("Text:", text_1988)
print("Matches:", matches_1988)
Cell 1988 - regular expressions
Text: Cell 1988 has numbers 12345 and letters abcde
Matches: ['1988', '12345']
# Cell 1989 - regular expressions

import re

text_1989 = "Cell 1989 has numbers 12345 and letters abcde"
pattern_1989 = r"[0-9]+"
matches_1989 = re.findall(pattern_1989, text_1989)

print("Cell 1989 - regular expressions")
print("Text:", text_1989)
print("Matches:", matches_1989)
Cell 1989 - regular expressions
Text: Cell 1989 has numbers 12345 and letters abcde
Matches: ['1989', '12345']
# Cell 1990 - regular expressions

import re

text_1990 = "Cell 1990 has numbers 12345 and letters abcde"
pattern_1990 = r"[0-9]+"
matches_1990 = re.findall(pattern_1990, text_1990)

print("Cell 1990 - regular expressions")
print("Text:", text_1990)
print("Matches:", matches_1990)
Cell 1990 - regular expressions
Text: Cell 1990 has numbers 12345 and letters abcde
Matches: ['1990', '12345']
# Cell 1991 - regular expressions

import re

text_1991 = "Cell 1991 has numbers 12345 and letters abcde"
pattern_1991 = r"[0-9]+"
matches_1991 = re.findall(pattern_1991, text_1991)

print("Cell 1991 - regular expressions")
print("Text:", text_1991)
print("Matches:", matches_1991)
Cell 1991 - regular expressions
Text: Cell 1991 has numbers 12345 and letters abcde
Matches: ['1991', '12345']
# Cell 1992 - regular expressions

import re

text_1992 = "Cell 1992 has numbers 12345 and letters abcde"
pattern_1992 = r"[0-9]+"
matches_1992 = re.findall(pattern_1992, text_1992)

print("Cell 1992 - regular expressions")
print("Text:", text_1992)
print("Matches:", matches_1992)
Cell 1992 - regular expressions
Text: Cell 1992 has numbers 12345 and letters abcde
Matches: ['1992', '12345']
# Cell 1993 - regular expressions

import re

text_1993 = "Cell 1993 has numbers 12345 and letters abcde"
pattern_1993 = r"[0-9]+"
matches_1993 = re.findall(pattern_1993, text_1993)

print("Cell 1993 - regular expressions")
print("Text:", text_1993)
print("Matches:", matches_1993)
Cell 1993 - regular expressions
Text: Cell 1993 has numbers 12345 and letters abcde
Matches: ['1993', '12345']
# Cell 1994 - regular expressions

import re

text_1994 = "Cell 1994 has numbers 12345 and letters abcde"
pattern_1994 = r"[0-9]+"
matches_1994 = re.findall(pattern_1994, text_1994)

print("Cell 1994 - regular expressions")
print("Text:", text_1994)
print("Matches:", matches_1994)
Cell 1994 - regular expressions
Text: Cell 1994 has numbers 12345 and letters abcde
Matches: ['1994', '12345']
# Cell 1995 - regular expressions

import re

text_1995 = "Cell 1995 has numbers 12345 and letters abcde"
pattern_1995 = r"[0-9]+"
matches_1995 = re.findall(pattern_1995, text_1995)

print("Cell 1995 - regular expressions")
print("Text:", text_1995)
print("Matches:", matches_1995)
Cell 1995 - regular expressions
Text: Cell 1995 has numbers 12345 and letters abcde
Matches: ['1995', '12345']
# Cell 1996 - regular expressions

import re

text_1996 = "Cell 1996 has numbers 12345 and letters abcde"
pattern_1996 = r"[0-9]+"
matches_1996 = re.findall(pattern_1996, text_1996)

print("Cell 1996 - regular expressions")
print("Text:", text_1996)
print("Matches:", matches_1996)
Cell 1996 - regular expressions
Text: Cell 1996 has numbers 12345 and letters abcde
Matches: ['1996', '12345']
# Cell 1997 - regular expressions

import re

text_1997 = "Cell 1997 has numbers 12345 and letters abcde"
pattern_1997 = r"[0-9]+"
matches_1997 = re.findall(pattern_1997, text_1997)

print("Cell 1997 - regular expressions")
print("Text:", text_1997)
print("Matches:", matches_1997)
Cell 1997 - regular expressions
Text: Cell 1997 has numbers 12345 and letters abcde
Matches: ['1997', '12345']
# Cell 1998 - regular expressions

import re

text_1998 = "Cell 1998 has numbers 12345 and letters abcde"
pattern_1998 = r"[0-9]+"
matches_1998 = re.findall(pattern_1998, text_1998)

print("Cell 1998 - regular expressions")
print("Text:", text_1998)
print("Matches:", matches_1998)
Cell 1998 - regular expressions
Text: Cell 1998 has numbers 12345 and letters abcde
Matches: ['1998', '12345']
# Cell 1999 - regular expressions

import re

text_1999 = "Cell 1999 has numbers 12345 and letters abcde"
pattern_1999 = r"[0-9]+"
matches_1999 = re.findall(pattern_1999, text_1999)

print("Cell 1999 - regular expressions")
print("Text:", text_1999)
print("Matches:", matches_1999)
Cell 1999 - regular expressions
Text: Cell 1999 has numbers 12345 and letters abcde
Matches: ['1999', '12345']
# Cell 2000 - regular expressions

import re

text_2000 = "Cell 2000 has numbers 12345 and letters abcde"
pattern_2000 = r"[0-9]+"
matches_2000 = re.findall(pattern_2000, text_2000)

print("Cell 2000 - regular expressions")
print("Text:", text_2000)
print("Matches:", matches_2000)
Cell 2000 - regular expressions
Text: Cell 2000 has numbers 12345 and letters abcde
Matches: ['2000', '12345']

Score: 2000

Category: basics