iT邦幫忙

2024 iThome 鐵人賽

DAY 3
0
Python

python 基礎學習系列 第 3

python 常用的基本語 ( 記就對了啦!! )

  • 分享至 

  • xImage
  •  

(⁠☞⁠ ⁠ಠ⁠_⁠ಠ⁠)⁠☞之後會有比較詳細的

宣告

  • int()整數
    ex: int(變數) int('1') int(1.4)

  • float()浮點數(小數)
    ex: float(2) float('3.8')

  • str()字串
    ex: str(5)

布林

  • True 真/成立
    ex:1+1=2 » True

  • False 假/不成立
    ex:5+20=520 » False

邏輯

  • and 和(兩者皆為真)
    ex:True and True

  • or 或(兩者中至少一個為真)
    ex:True and False

  • nor 也不是(兩者皆為假)
    ex:Flse and False

基本指令

  • print() 印出
    ex:print(a) print(s,b)

  • end=""/end='' 不換行
    ex:print(1,end='')

新增(假設x=(1,2,3,4,5,6,7,8))

  • append()
    ex:append(😛) » x=(1,2,3,4,5,6,7,8,😛)

  • insert()
    ex:insert(0,🤪) » x=(🤪,1,2,3,4,5,6,7,8)

刪除 (假設x=(1,2,3,👻,5,💀,7,8))

  • remove()
    ex:remove(👻) » x=(1,2,3,5,💀,7,8)

  • pop()
    pop(5) » x=(1,2,3,👻,5,7,8)

  • del
    ex:del x » 沒有x了


上一篇
來不及了....放假再補
系列文
python 基礎學習3
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言