首頁>Club>
4
回覆列表
  • 1 # 沐燁華

    #定義變量的幾種方式

    a,b,c,d = 4,4,4,4

    print(d,c,b,a)

    x=y=z=4

    print(x,y,z)

    #整型:int

    a = 30

    print(type(a))

    print(bin(a))

    print(oct(a))

    print(hex(a))

    #浮點型:float

    b = 3.3

    print(type(b))

    #科學計數

    c = 3.3e5#3.3*10^5

    print(c,type©)

    #布爾型:bool

    #取值範圍:True和False

    d = True

    e = False

    print(type(d),type(e))

    #複數型:complex

    #對應數學裡面的複數,格式:i^2=-1

    x = 3.8 + 4.5j

    print(type(x))

    不同的數字類型之間可以互相轉換:

    #轉整型用int():

    #轉浮點型float():

    #轉布爾型bool():

    轉複數complex():

    a = 3.8 # 不是四捨五入,只取整數部分

    print(int(a))

    b = 5

    print(float(b))

    c = 4 # 0轉換為False,非0轉換為True

    d = 0

    print(bool©,bool(d))

    e = 3.3

    f = 7.7

    print(complex(f,e))

  • 中秋節和大豐收的關聯?
  • 120支羊毛大衣是什麼意思?