equal
deleted
inserted
replaced
18 # calling the matching function |
18 # calling the matching function |
19 s = ("a" * int(cn)) |
19 s = ("a" * int(cn)) |
20 m = re.match('(a*)*b' , s) |
20 m = re.match('(a*)*b' , s) |
21 |
21 |
22 print(s) |
22 print(s) |
23 print(m) |
23 print(bool(m)) |