Python基礎知識

2022-07-21 04:27:10 字數 936 閱讀 2772

標籤(空格分隔): python基礎知識

變數名包括字母、數字和下劃線。變數不能以數字開頭。

>>>x = 3

>>> x * 2

輸出:6

使用input函式

>>>input("the meaning of life: ")

the meaning of life: 42

輸出:'42'

1.乘方函式:pow

>>>from math import pow

>>>2**3

輸出:8

>>>pow(2, 3)

輸出:8

2.絕對值函式:abs

>>>from math import abs

>>>abs(-19)

19

3.四捨五入函式:round

>>>from math import round

>>>round(1.0/2.0)

1.0

4.向下取整函式:floor

>>>from math import floor

>>>floor(23.9)

23

匯入模組的時候使用import語句

>>>import math

>>>math.floor(23.9)

23

在確定不會匯入多個同名函式(從不同的模組)的情況下,你可能不希望每次呼叫函式的時候都寫上模組的名稱。那麼此時可以使用import的另外一種形式:

>>>from math import sqrt

>>>sqrt(9)

3.0

Python 基礎知識

來自 一 識別符號 1.python 中的識別符號是區分大小寫的。2.標示符以字母或下劃線開頭,可包括字母,下劃線和數字。3.以下劃線開頭的識別符號是有特殊意義的。以單下劃線開頭 foo 的代表不能直接訪問的類屬性,需通過類提供的介面進行訪問,不能用 from import 而匯入 以雙下劃線開頭的...

python基礎知識

一.隨機數的生成 都需要 import random 1.用於生成乙個指定範圍內的隨機浮點數。print random.uniform 10,20 print random.uniform 20,10 2.生成乙個指定範圍內的整數。下限必須小於上限制 print random.randint 12,...

python基礎知識

py基礎學習 1.命令列輸入python命令式,例如python test.py c m install sys.argv test.py c m install 2.切片,str 0 5 1 含頭不含尾,表示倒序切 3.unicode和encode unicode str,utf 8 將utf 8...