-- coding:utf-8 --
Author:Tinky
資料型別
"""
整數 int
長整型 long
浮點型 float
複數 complex
"""
布林值
""" 真,假,0、1
"""
三元運算
a, b, c = 1, 2, 3
d = a if a > b else c
print(d)
進位制
'''
二進位制:0,1
十進位制:0,1,2,3,4,5,6,7,8,9
十六進位制:0,1,2,3,4,5,6,7,8,9,A,B,C,D,E
字元都是用Unicode 表示,而二進位制則是由bytes表示
Python中傳換資料都是用二進位制的形式
'''
msg = "我愛北京天安門"
print(msg.encode("utf-8")) # 進行二進位制編碼
print(msg.encode("utf-8").decode(encoding='utf-8')) # 進行解碼