03我的Python學習之路 基本資料型別

2021-10-23 16:11:52 字數 2819 閱讀 3050

1.2**字型修改file – settings --editor – font

1.5自動導包file – settings —editor —general ----auto import 打勾

1.7修改新建檔案檔案頭file–settings --editor—code style —file and code templates — python script

1.8修改字型編碼file – settings – editor —code style —file encoding —project encoding

2.2 語句

2.3 程式

2.4 函式

def

fun():

# 用來列印 hello

print

("hello"

)

def

fun1

(a,b)

:print

(a +b)

deffun3

(a,b,c)

:print

(a+b-c)

def

fun2()

: i *=

5return i

class

mycar()

:# 類

pass

# print("hello world") 單行注釋

''' 多行注釋

'''ctrl +

'/' 快捷鍵也可以注釋

len

=len

(keyword.kwlist)

j =4

for i in

range(0

,len):

if i % j ==

0and i !=0:

print

(keyword.kwlist[i]

.ljust(8)

) j +=

5else

:print

(keyword.kwlist[i]

.ljust(8)

, end=

' ')

print

("python共有%d個關鍵字"

%(i+1)

)

a = 123_343_123   # 數字之間加下劃線提高**的可讀性

print

(a)print

(type

(a))

4.2 布林值和空值

print

(true+1)

// 結果為2 代表true為1

print(2

-flase)

// 結果為2 代表flase為0

print

(bool(23

))// 結果為true

import copy

a =b = a # 兩個物件值相等,是同一物件

print(id

(a),

id(b)

)print

(a == b)

c = copy.deepcopy(a)

# 兩個物件值相等,但不是同一物件

print(id

(a),

id(c)

)print

(a == c)

執行結果如下:

6.2 轉義字元

6.3 長字串

'''

這是乙個長字串(文件字串)的案例

下面是對它的乙個演示

它有什麼作用呢?

1.長字串可以換行

2.保留字串中的格式

'''

#1.長字串可以換行

#2.保留字串中的格式

s ='''關關雎鳩,

在 河之洲,

窈窕淑女,

君子好逑

'''print

(s)

執行結果:

我的python學習之路

初識python 獲取url位址解析url原始碼提取原始碼中的需要資訊使用re beautifulsoup urllib.request等常用庫寫入txt excel等等。format string string to convert 其中 format string為格式標記字串,形式為 cdoe...

我的python學習之路

python tutorial 入門指南 runoob.com python 3.7.4 官方文件 w3cschool python3手冊文件 python3標準庫 主題 像科學家一樣思考pytho 2.python web相關 django官網 劉江的部落格教程 django 3.爬蟲框架 scr...

Python全棧之路基礎

2.x的預設編碼是assic,預設不支援中文。而3.x的預設編碼是unicode,預設支援中文 3.x不相容2.x,新特性只在3.x上有 3.x的核心語法更加簡單易學 變數的命名規則 要具有描述性 變數名只能 數字,字母組成,不可以是空格或特殊字元 不能以中文為變數名 不能以數字開頭 不能被使用保留...