python3學習筆記 2 基礎

2022-09-16 04:18:13 字數 565 閱讀 9267

1.編碼

預設編碼是 utf-8

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

2.注釋

單行注釋  #

多行注釋,用三個單引號或雙引號

3.關鍵字

可在互動視窗查詢。

>>> import keyword

>>> keyword.kwlist

4.識別符號

5.行、縮排

6.多行語句

用   \   來連線。注意 在()、{}、中不需要使用  \  。

7.數字型別

int整數、float浮點數、bool布林數、complex複數

8.字串 string

''  "" 使用相同、使用r來使\不發生轉義、可用+連線,*運算子重複、字串的擷取的語法格式如下:變數[頭下標:尾下標],a[2:-1]、

9.多語句

類似 if 等 用:分割

10.print

print 預設輸出是換行的,如果要實現不換行需要在變數末尾加上end=""

11.improt與import from

匯入模組

python3學習筆記2

生成乙個隨機數 random.randint a,b 函式返回數字 n n 為 a 到 b 之間的數字 a n b 包含 a 和 b。str.count sub,start 0,end len string string 中 某字元 的次數 sub 搜尋的子字串 start 字串開始搜尋的位置。預設...

Python3學習筆記

最近在起步學python,聚合一下這個過程中蒐集的資源和對一些基本知識做個小總結,語法基於python3,方便以後查詢。python官方文件 不錯的基礎課程 基本語法 演算法 建模 練習 以下是整理常用可能遺忘的基礎點 python3中的輸入是input 獲得使用者輸入的字串 a input ple...

python3學習筆記

redis訊息佇列的使用 coding utf 8 created on tue mar 26 15 58 34 2019 author admin import redis class redisqueue object def init self,name,namespace queue red...