Python學習 資料型別

2021-06-06 15:09:54 字數 1058 閱讀 7297

#!/usr/bin/python

# -*- coding: utf-8 -*-

# filename datatype.py

# python有四種型別的數

# 1.整型

a = 2

print a

# 2.長整型

b = 123456789

print b

# 3.浮點數

c = 3.2e2

print c

# 4.複數 複數為實數的推廣,它使任一多項式都有根。複數當中有個「虛數單位」j,它是-1的乙個平方根。任一複數都可表達為x+yj,其中x及y皆為實數,分別稱為複數之「實部」和「虛部」。

d = (2+3j)

print d

# 字串,單雙引號是乙個意思

e = 'hello world'

print e

f = "hello world"

print f

# 三引號引用多行字串

g = '''my name is

python'''

print g

# 轉義符

h = 'what\'s your name?'

print h

# 行末加\表示繼續顯示下一行,不換行

i = 'this is a ap\

ple'

print i

# 字串鏈結

j = 'hello' ' world'

print j

# 使用逗號會讓換行變為空格

l = 'hello'

m = 'world'

print l,

print m

2

123456789

320.0

(2+3j)

hello world

hello world

my name is 

python

what's your name?

hello world

hello world

學習Python 之 資料型別

首先,python程式,要嚴格注意 縮排,在c中所有需要括號的地方,都要縮排,不然程式會報錯.indentationerror expected an indented block 資料型別 1.dictionary 形式 d 1 在乙個 dictionary 中不能有重複的 key。給乙個存在的 ...

python學習2 資料型別

1.python是強型別 動態型別的語言,動態型別表明它可以在宣告變數的時候,不必指定資料型別,強型別規定了它不能容忍隱式型別轉換 2.python中的不可變型別有 int,string,tuple 可變型別有 list,dict 3.tuple與list差不多,tuple內容不可更改用 而list...

學習筆記 Python 資料型別

資料型別 classinfo 基礎資料型別 資料型別 備註示例 number 數字 python支援四種不同的數字型別 int 有符號整型 long 長整型 也可以代表八進位制和十六進製制 float 浮點型 complex 複數 a 1string 字串 使用引號,包括str和basestring...