學習python第六節課

2021-10-10 04:58:14 字數 1624 閱讀 2875

• 執行的流程:

• if語句在執行時,會先對條件表示式進行求值判斷,

• 如果為true,則執行if後的語句

• 如果為false,則不執行

• 語法:if 條件表示式 :

**塊• **塊**塊中儲存著一組**,同乙個**塊中的**,要麼都執行要麼都不執行

• **塊以縮排開始,直到**恢復到之前的縮排級別時結束

• **塊就是一種為**分組的機制

2.1 運算子**優先順序參照**

:=assignment expression

lambda

lambda expression

if – else

conditional expression

orboolean or

andboolean and

not x

boolean not

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

comparisons, including membership tests and identity test

^bitwise xor

&bitwise and

<>

shifts

+, -

addition and subtraction

*, @, /, //, %

multiplication, matrix multiplication, division, floor division, remainder[5]

+x, -x, ~x

positive, negative, bitwise not

**exponentiation[6]

await x

await expression

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

subscription, slicing, call, attribute reference

(expressions…),

binding or parenthesized expression, list

[expressions…], ,

display, dictionary display, set display

3.1 if 語句

if-else語句

4.1 用條件運算子找3個值中的最大值

4.2求1000以內所有的水仙花數

4.3求100以內的質數

第六節課20180916

本次課從4.3.2講到5.2,越來越複雜,知識點記得不牢固。有些枯燥,就找些樂趣來幫助堅持練。是否等於 eq 是否大於 gt 是否小於 lt 是否不等於 ne 是否大於等於 ge 是否小於等於 le 流程控制語句 if then fi if then else fi if then elif els...

移動應用開發第六節課

學習第二個按鍵 radiobutton radiobutton為單選按鈕,它需要與radiogroup配合使用,提供兩個或多個互斥的選項集 radiogroup是單選組合框,可容納多個radiobutton,並把它們組合在一起,實現單選狀態 安卓的的日誌工具log android中的日誌工具類是lo...

學習Python的第六節課 函式和變數作用域

函式的本質就是一段有特定功能 可以重複使用的 1 內建函式python自帶的可直接呼叫的函式。比如 int input print 2 庫函式 庫函式匯入 import 模組名 from 模組名 import 執行過程 先判斷表示式的值,當其值為true或其他非0值,執行語句塊1,否則執行語句塊2。...