Skip to content

Instantly share code, notes, and snippets.

@Pierian-Data
Created March 1, 2018 17:07
Show Gist options
  • Save Pierian-Data/08bfae4a28647fd2e99f6f392da471a3 to your computer and use it in GitHub Desktop.
Save Pierian-Data/08bfae4a28647fd2e99f6f392da471a3 to your computer and use it in GitHub Desktop.
def myfunc():
print('Hello World')
@official-commandcodes
Copy link

def myfunc():
print('Hello World')

myfunc()

@Opt-Jay
Copy link

Opt-Jay commented May 28, 2024

def myfunc():
print('Hello World!')

myfunc()

@adarsh-varrier
Copy link

def myfunc():
print("Hallo World!")

myfunc()

@Sajith0701
Copy link

def func():
print("Hello World")
func()

@kevin17-86
Copy link

def print_hello():
print('Hello World')

print_hello()

@darkh00k
Copy link

def my_func():
print("Hello World")

my_func()

@Alphayoh
Copy link

def myfunc():
print('Hello World')

@haneenmuhammed2005
Copy link

def my_function():
print("Hello world)

my_function()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment