經常用得上的shell指令碼

/bin/bash# 日誌格式: $remote_addr - $remote_user [$time_local] “$request” $status $body_bytes_sent “$http_referer” “$http_us...

2023-01-03
Python中的while迴圈

Python中的while迴圈

# 基本語法# while expression:# 程式碼塊# while迴圈類似 if 語句的語法,如果 while 迴圈體中只有一條語句,可以將該語句與while寫在同一行中while True: print(“一條語句”)# 建立一...

2022-07-10
python流程控制與迴圈

python流程控制與迴圈

#例1for item in [‘a’,‘b’,‘c’]: print(item)# 執行結果abc# 參照例1來介紹for迴圈的執行步驟# 步驟1:從列表[‘a’,‘b’,‘c’]中讀出第一個值賦值給item(item=‘a’),然...

2022-06-20