単一のステートメントを使用して、原子記号と、原子記号に1文字しかないwts(私の辞書)の要素に対応する重みのみを含む辞書を印刷します。つまり、「H」を含めますが、「He」は省略します。私の辞書は次のように設定されています{'H':'1.00794','He':'4.002602','Li':'6.941','Be':'9.012182','B':'10.811','C':'12.0107','N':'14.0067','O':'15.9994'}
[for element in wts if len(element) == 1]
リスト内包表記でうまくいくと思っていたのですが、どうすれば要素記号だけを見てもらえるのでしょうか。これは次のエラーを返します:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "_sage_input_45.py", line 10, in <module>
exec compile(u"print _support_.syseval(python, u'[for element in wts if len(element) == 1]', __SAGE_TMP_DIR__)" + '\n', '', 'single')
File "", line 1, in <module>
File "/sagenb/sage_install/sage-5.3-sage.math.washington.edu-x86_64-Linux/devel/sagenb-git/sagenb/misc/support.py", line 487, in syseval
return system.eval(cmd, sage_globals, locals = sage_globals)
File "/sagenb/sage_install/sage-5.3-sage.math.washington.edu-x86_64-Linux/local/lib/python2.7/site-packages/sage/misc/python.py", line 53, in eval
eval(compile(s, '', 'exec'), globals, globals)
File "", line 3
[for element in wts if len(element) == 1]
^
SyntaxError: invalid syntax