Python 基本輸出 vs C 語言中的printf()
資料來源: https://github.com/stormzhang/free-programming-books/blob/master/assets/python/Python%E6%A0%B8%E5%BF%83%E7%BC%96%E7%A8%8B%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89%E5%B8%A6%E7%9B%AE%E5%BD%95.pdf 的p34
# -*- coding: UTF-8 -*-
print(“”)#會自動換行的特性
print(“Hello, Python!”)
print(“廖晅晢!”)
print “%s is number %d!” % (“Python”, 1)
print (“%s is number %d!” % (“Python”, 2))
#ps.第一行注解具有讓程式支援中文的能力
|