Add helloworld examples

Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
This commit is contained in:
Christopher Arndt 2024-05-06 00:49:00 +02:00
parent fb0fed2247
commit b0d671321d
3 changed files with 33 additions and 0 deletions

1
beispiele/hallowelt.py Normal file
View File

@ -0,0 +1 @@
print("Hallo, Welt!")

13
beispiele/hallowelt2.py Normal file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python3
#
# hallowelt2.py
#
"""Gebe einen Gruß aus."""
def hello():
"""Gebe "Hallo, Welt!" aus.
"""
print("Hallo, Welt!")
if __name__ == '__main__':
hello()

19
beispiele/hallowelt3.py Normal file
View File

@ -0,0 +1,19 @@
#!/usr/bin/env python3
#
# hallowelt3.py
#
"""Frage nach dem Namen und gebe einen persönlichen Gruß aus."""
import sys
def hello(name):
"""Gebe einen persönlichen Gruß aus."""
print("Hallo,", name, "!")
if __name__ == '__main__':
name_input = input("Wie lautet dein Name? ")
if name_input.strip():
hello(name_input.strip())