Pythonの知識ポイントの記録は日々蓄積されている.


出力シーケンスおよび逆シーケンス出力
print range(1,10)
print range(1,10)[::-1]
#output:
#[1, 2, 3, 4, 5, 6, 7, 8, 9]
#[9, 8, 7, 6, 5, 4, 3, 2, 1]

rを加えて転義しない
print "\\savc
ff"
print r"\\savc
ff"
#output: #\savc #ff #\\savc
ff

出力log情報のフォーマット
print 'succeed'.center(20,'=')
print 'fail'.center(20,'=')
# output
# ======succeed=======
# ========fail========

1つの引用符と2つの引用符で文字列を表すことができます.
print 'hello world'
print "hello world"

出力hello worldこの点はjavaと区別することに注意してください.javaの単一引用符は文字charを表し、二重引用符は文字列strを表すからです.
passの使用
空の関数を定義するには、次のようにします.
def staCorrect():
    pass

上のパスを外すと間違えます.