Add python template.

This commit is contained in:
ulic-youthlic 2025-05-25 23:28:27 +08:00
parent cae1182840
commit fa180a7636
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
11 changed files with 621 additions and 0 deletions

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,10 @@
def hello(name: str = "World"):
print(f"Hello, {name}!")
def main():
hello()
if __name__ == "__main__":
main()