adding first script

This commit is contained in:
2021-05-23 18:05:44 +02:00
commit 04f657cd82
2 changed files with 15 additions and 0 deletions

12
.gitignore vendored Normal file
View File

@@ -0,0 +1,12 @@
.env
# ---> Python
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
node_modules
.DS_store

3
hello.py Normal file
View File

@@ -0,0 +1,3 @@
#!/usr/bin/python3
print("Hello-World of Python!")