#! /usr/bin/env python3 def hello(name): print('hello, '+name) hello('alice') hello('bob')