Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
>>> import sys >>> def hello(name): name='Hello, ',name,' !' print name
这是我的代码。如何为参数“名称”赋值?
你的意思是
input = "whatever" hello(input)