初識資料型別和簡單的互動
資料型別: 區分不同的資料. 不同的資料型別應該有不同的操作
數字: +(加)-(減)*(乘)/(除)
整數,:int
小數,:float
文字: 展示
字串: str (非常重要)
表示方式:
''
""
''' '''
""" """+
a = '你好' b = "你好" c = '''你好''' print(a,b,c)
C:\Python38\python.exe F:/python_study/python基礎.py
你好 你好 你好
Process finished with exit code 0
操作:
+ 左右兩端必須是字串, 表示字串連線操作
a = '你好' b = "很高興" c = '''認識你''' print(a+b+c)
C:\Python38\python.exe F:/python_study/python基礎.py
你好很高興認識你
Process finished with exit code 0
* 一個字串只能乘以一個數字, 表示字串重複的次數
a = '你好' print(a*3)
C:\Python38\python.exe F:/python_study/python基礎.py
你好你好你好
Process finished with exit code 0
布林(bool): 條件判斷
布林值主要有兩個:
True 真, 真命題
False 假, 假命題
100 > 30 -> 真
變數 = input(提示語)
首先會在螢幕中顯示出提示語, 使用者輸入內容. 然後把使用者輸入的內容交給前面的變數
坑: input()得到的結果一定是字串
a = input('請輸入數字:') b = input('請輸入數字:') print(a+b)
C:\Python38\python.exe F:/python_study/python基礎.py
請輸入數字:10
請輸入數字:20
1020
Process finished with exit code 0
怎麼把字串轉化成數字型別呢?
py基礎資料型別:
想把xxx轉化成誰, 就用誰套起來
語法:str => int int(str)
a = input('請輸入數字:') b = input('請輸入數字:') a = int(a) b = int(b) print(a+b)
C:\Python38\python.exe F:/python_study/python基礎.py
請輸入數字:10
請輸入數字:20
30
Process finished with exit code 0