wd951357 发表于 2018-10-13 15:18:00

python 004的功課 請寫出與10< cost <50 等價的表達式,有人會嗎?

還有"短路邏輯" (short-circuit logic) 是什麼意思?

claws0n 发表于 2018-10-13 15:32:25

A or B 如果 A 为【真】,就直接返回【真】,不考虑B
A and B,如果 A 为【非】,,就直接返回【非】,不考虑B
【真】是被重载的【非零为真】

claws0n 发表于 2018-10-13 15:32:58

10 < cost and cost < 50

sjiwxm@qq.com 发表于 2018-10-14 14:39:27

1e1< cost <5e1
--------------------------------------
10 <a < 50
a=cost
--------------------------------------
b>10 and b<50
b=cost
-------------------------------------
{:10_266:}{:10_266:}

yg飞许 发表于 2022-12-28 22:11:37

{:10_249:}
页: [1]
查看完整版本: python 004的功課 請寫出與10< cost <50 等價的表達式,有人會嗎?