文字列を表示する
書式
print "文字列"
print '文字列'
説明
文字列を表示するにはprintを使い"〜"または'〜'で表示する文字を囲みます。
サンプル
ダウンロード
print "Python Sample"
実行結果
Python Sample