Beginn of S2

main
Thomas 2023-01-13 15:34:17 +01:00
parent d63ea5fd18
commit 037d30f20a
2 changed files with 15 additions and 0 deletions

9
SL_2/s2_a1.py 100644
View File

@ -0,0 +1,9 @@
class parent:
pass
class child(parent):
pass
class imbread(parent,child):
pass
i = imbread()

6
SL_2/s2_a2.py 100644
View File

@ -0,0 +1,6 @@
import re
before = "If the the problem is textual, use the the re module"
after = re.sub("the the", "the", before)
print(after)