learningpython/function.py

8 lines
97 B
Python
Raw Normal View History

2021-02-08 18:29:13 +01:00
#! /usr/bin/env python3
def hello(name):
print('hello, '+name)
hello('alice')
hello('bob')