PPE2/src/exercise1.py
2026-02-25 17:16:00 +01:00

7 lines
112 B
Python

def remove_char(s: str) -> str:
return s[1:-1]
if __name__ == "__main__":
print(remove_char("hallo"))