2024.4.16python基礎學習

writecodechangeworld發表於2024-04-16
  • 基本資料型別
    number
    int
    money=6600
    float
    discount=1.2
    boolen
    isok=true
    isok=false
    string
    s='sssss'
    s="ssssss"
    ps:單引號與雙引號成對出現,不可以混合使用
    可以單引號巢狀雙引號,互相巢狀
    list(列表)
    my_list=['足球','籃球']
    tuple(元組)
    my_tuple=(12,123,1234)
    dict(字典)
    my_dict={'key':value}
    my_person={'name':'李白','age'=19}
    type(變數名)--檢視資料的型別
  • 型別轉換
    int(x)
    float()
    str()
    bool()