學習筆記(4):零基礎掌握 Python 入門到實戰-判斷語句,見機行事

LiuMH2011發表於2020-10-22

立即學習:https://edu.csdn.net/course/play/26676/338784?utm_source=blogtoedu

if 條件:

    操作...

elif 條件:

    操作...

else:

    操作...    

三元操作:

x = 2

a = 'python' if x > 2 else 'physics'

import random

random.randint(start, end)

相關文章