Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Python: Functions I : Functions with messages.
#python 3.5.2 def f1(): print("hello") def f2(msg): print(msg) def f3(num): for i in range(num): print(i," Hello") def f4(msg,num): for i in range(num): print(i," ",msg) f1() f2("Hello happy people") f3(5) f4("Hello happy people",4)
run
|
edit
|
history
|
help
0
test1.py
Converion of dictionary to list of tuples (Stackoverflow problem)
Hello
Reading XML File
Python Unit Test Case Sample
Fibonacci to the Nth number
BasicFunctions.py
fibonacci sequence generator and golden ratio
Quick sort
Sum of two numbers