Python學習筆記(一) 關鍵字和內建函式

2021-09-27 10:26:37 字數 2348 閱讀 8648

python學習筆記(一):python關鍵字、內建函式以及運算子優先順序

目錄

python關鍵字

python內建函式

運算子的優先順序

true

ifis

class

global

false

elif

indef

nonlocal

andelse

return

import

delor

while

none

from

lambda

notbreak

tryassert

yield

with

continue

except

pass

asfor

finally

raise

注:python2中,print是關鍵字不是函式

print()len()

input()

range()

str()

open()

min()

max()

sum()

int()

type()

super()

id()

abs()

chr()

all()

any()

basestring()

bin()

bool()

bytearry()

sorted()

list()

tuple()

long()

callable()

ord()

classmethod()

xrange()

float()

cmp()

compile()

complex()

delattr()

dict()

dir()

divmod()

hex()

help()

hash()

unichr()

isinstance()

enumerate()

filter()

file()

unicode()issubclass()

eval()

format()

execfile()

frozenset()

getattr()

globals()

hasattr()

iter()

map()

memoryview()

locals()

next()

object()

oct()

pow()

property()

raw_input()

reduce()

reload()

repr()/ascii()

reversed()

zip()

round()

set()

setattr()

slice()

staticmethord()

vars()

__import__()

buffer()

coerce()

intern()

注:python3中沒有內建函式unicode(),內建函式用法和示例詳見菜鳥教程

運算子描述

lambda

lambda 表示式

if -- else

條件表示式

or布林邏輯或 or

and布林邏輯與 and

not x

布林邏輯非 not

in,not in,is,is not,>,>=,<,<=,!=,==

比較運算,包括成員檢測和標識號檢測

|按位或 or

^按位異或 xor

&按位與 and

<<,>>

移位+,-

加、減*,@,/,//,%

乘、矩陣乘、除、整除 、取餘

+x,-x,~x

正、負、按位非 not

**乘方

await x

await 表示式

x[index],x[index:index],x(arguments...),x.attribute

抽取,切片,呼叫,屬性引用...

注:python學習手冊

MySql學習筆記 一 關鍵字的使用

1.distinct關鍵字 作用 檢索出有不同值的列,比如乙個商品表中存在 商vend id,乙個 商會對應很多商品,我們要查詢有多少 商,就可以用到該關鍵字去重。select distinct vend id from products 2.limit關鍵字 作用 返回表中指定行範圍的資料 sel...

Kotlin 基礎一 關鍵字

kotlin語言中文站 android 字段說明 abstract 抽象宣告,被標註物件預設是open annotation 宣告乙個註解類 by委託 class 宣告乙個類 companion 宣告乙個伴生物件 const 將屬性標記為編譯期常量 constructor 宣告乙個主建構函式或次建構...

python學習筆記 關鍵字

python 3中的關鍵字 幾個關鍵字的解釋 true 類似於c 裡面的bool真。false 類似於c 裡面的bool假。and 邏輯運算子,和c 相同的是都是同真為真,但是不同的是,python中返回型別不是bool型別,而是當結果為真時邏輯運算的最後乙個真值,否則返回邏輯運算的第乙個假值。or...