python學習筆記 01 運算子變數導包

2021-10-08 20:16:59 字數 1156 閱讀 4721

1. python安裝

2. hello world

互動式環境/idle

儲存檔案

print

'hellow world!'

#檔案頭

#!/usr/bin/python

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

# coding=utf-8

pycharm

3. 整數進製

4. 變數,常量,識別符號

5. 運算子

算術運算

+,-

,*,/

,//,%

,**

賦值運算

=,+=

,-=,*=

,/=..

.

比較運算

>

,>=

,<

,<=,==

,!=

邏輯運算

and,or

,not

位運算

&,|

,~,^

,>>

,<<

成員運算

in

,not

in

身份運算

is,is

not

6. 幾個內建的函式

7. 匯入模組

導包的幾種語法

#1. 匯入模組

import module [

as alias]

#2. 從包中匯入模組

from pack import module [

as alias]

#3. 匯入模組中指定的函式/類/常量,並且可以取別名

from pack.module import func [

as alias]

#4. 匯入模組所有內容,不建議使用

from module import

*

Python學習筆記 運算子

python運算子包含 1.算數運算子 2.比較運算子 3.賦值運算子 4.位運算子 5.邏輯運算子 and or not 6.成員運算子 in,not in 7.身份運算子 is,not is 8.運算子優先順序 1.算術運算子 加 兩個物件相加 減 兩個物件相減 乘 兩個物件相乘 除 兩個物件相...

Python 運算子 學習筆記

以下假設變數a為10,變數b為21 運算子描述例項 加 兩個物件相加 a b 輸出結果 31 減 得到負數或是乙個數減去另乙個數 a b 輸出結果 11 乘 兩個數相乘或是返回乙個被重複若干次的字串 a b 輸出結果 210 除 x 除以 y b a 輸出結果 2.1 取模 返回除法的餘數 b a ...

python學習筆記 運算子

運算子 以1 2為例,1和2被稱為運算元,稱為運算子。python語言支援以下型別的運算子 算術運算子 比較 關係 運算子 賦值運算子 邏輯運算子 位運算子 成員運算子 身份運算子 三目運算子 以下假設變數 a 10,b 20 python中,有三種除法,分別是 10 3 3.3333333331....