comment coder une fonction de python
def hi():
print("hi!")
Curious Cowfish
def hi():
print("hi!")
def Hello
print("Hello")
print("Hello below this is function")
def hi():
print("Hi I am a function")
hi() # You must call the function
def function_name():
def hello():
name = str(input("Enter your name: "))
if name:
print ("Hello " + str(name))
else:
print("Hello World")
return
hello()
help(fun_name)
// example
help(print) tells everything about print function