これは、変数をタプルとして参照する際に遭遇した Python で最も興味深いことです。誰かがCで同等のものを教えてくれますか???
h = 1,_,3,_
h
Out[2]: (1, '', 3, '')
h = 1,'',3, ''
h
Out[5]: (1, '', 3, '')
これはどのように起こりますか?_ と '' は等しいですか? 違いはなんですか?
そのような魔法の参照はいくつ可能ですか??
これは、変数をタプルとして参照する際に遭遇した Python で最も興味深いことです。誰かがCで同等のものを教えてくれますか???
h = 1,_,3,_
h
Out[2]: (1, '', 3, '')
h = 1,'',3, ''
h
Out[5]: (1, '', 3, '')
これはどのように起こりますか?_ と '' は等しいですか? 違いはなんですか?
そのような魔法の参照はいくつ可能ですか??
_
IPython シェルでのデフォルト値は次の''
とおりです。
monty@xonix:~/py$ ipython --classic
Python 2.7.4 (default, Apr 19 2013, 18:32:33)
Type "copyright", "credits" or "license" for more information.
IPython 0.13.2 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
>>> _
''
>>> 2*2
4
>>> _ # Now _ returns the value of last expression
4