learningpython/function.py

8 lines
97 B
Python
Raw Normal View History

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