5 lines
124 B
Python
5 lines
124 B
Python
def wort_funktion(s : str) -> str:
|
|
last = len(s)
|
|
print(s[0] + s[(len(s)) - 1])
|
|
|
|
wort_funktion("das ist ein string!") |