Python Online Compiler & Playground
HTML/CSS/JavaScript
HTML
CSS
Javascript
C++
C
PHP
Java
Python
Swift
C#
Ruby
Node.JS
Kotlin
jQuery
Go
R
TypeScript
Start Python Course
Register
Intro to Functional Programming
+3
Author: Nicole Krason
Dark
Public
Save
PY
py
1
2
3
4
5
6
7
def
welcome
(
name
):
return
"Welcome, "
+ name
def
process_user
(
name
,
func
):
return
func
(
name
)
print
(
process_user
(
"Alice"
,
welcome
))
Enter to Rename, Shift+Enter to Preview
OUTPUT