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')
@saikrishna-vinjamuri
Copy link

def hello_name(name):
print(f'hello {name}')

name = input("please enter your name \n")
hello_name(name)

@noozyy
Copy link

noozyy commented Jul 2, 2024

def my_func:
return "Hello World"

@dannaemartinez
Copy link

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

@deekshithapalavanchu
Copy link

def myfc( ):
print('hello world')

@ranaorten
Copy link

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

@fgang1990
Copy link

def say_hi (name= 'your name'):
Print (f'Hi {f'Hello {name}')

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