私はこのコードを持っているとしましょう:
def dosomething(thing1, thing2=hello, thing3=world):
print thing1
print thing2
print thing3
私はthing3が何であるかを指定できるようにしたいと思いますが、thing2が何であるかを言う必要はありません. (以下のコードは、私がそれがうまくいくと思った方法です...)
dosomething("This says 'hello fail!'", , 'fail!')
そしてそれは言うでしょう
This says 'hello fail!'
hello
fail!
それで、そのようにする方法はありますか、それとも私がthing2
言いたいことを毎回指定する必要がありますthing3
か?
それが重要な場合、私はpython2を使用しています。