From 04f657cd82ee36e689972144623922862a2fc841 Mon Sep 17 00:00:00 2001 From: Mpho raf Date: Sun, 23 May 2021 18:05:44 +0200 Subject: [PATCH] adding first script --- .gitignore | 12 ++++++++++++ hello.py | 3 +++ 2 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 hello.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ddf7324 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +.env +# ---> Python +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +node_modules +.DS_store diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..3127442 --- /dev/null +++ b/hello.py @@ -0,0 +1,3 @@ +#!/usr/bin/python3 + +print("Hello-World of Python!")