print

SYNTAX print expression[, expression]
# 複数の式をスペース区切りで出力する print "aaa", 10, "bbb"; # format するには % を利用する print "File s is Not Exist" % "test.txt" # 文字列操作でも format はできる s = "Total Time %d Processd" % 10