所以我想做的是多次使用一个函数,比如
def something():
x = input('what's your name')
print('hello', x)
return
something()
something()
something()
我想要的是那些给予个人的东西。 我必须做这样的事情:
something.samantha()
something.george()
something.jerald()
答案 0 :(得分:1)
我认为你的意思是定义一个函数参数:
def something(x):
print('hello', x)
something("samantha")
something("george")
something("jerald")