From ef1e777c6d181b660651e543e7feeed41695944a Mon Sep 17 00:00:00 2001 From: Vikram Sethi Date: Tue, 20 Jun 2023 15:37:49 -0500 Subject: [PATCH] Added Hello World Python function --- Python/Functions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Python/Functions.py b/Python/Functions.py index 3a2048f..99facc4 100644 --- a/Python/Functions.py +++ b/Python/Functions.py @@ -15,3 +15,7 @@ def reverseMessage(x): for i in range((len(b)-1),-1,-1): r=r+b[i]+"" return print(r) + +# A function to print hello world +def my_function(): + print("Hello World")