我怎样才能将函数用于不同的事情(不知道怎么写它)

时间:2016-04-06 21:03:19

标签: function python-3.x

所以我想做的是多次使用一个函数,比如

def something():
    x = input('what's your name')
    print('hello', x)
return


something()
something()
something()

我想要的是那些给予个人的东西。 我必须做这样的事情:

something.samantha()
something.george()
something.jerald()

1 个答案:

答案 0 :(得分:1)

我认为你的意思是定义一个函数参数

def something(x):
    print('hello', x)

something("samantha")
something("george")
something("jerald")