Python 入門指南 5.0

exercise1014.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# 定義不限個數參數的函數
def do_something(*a):
    # 印出參數
    for i in a:
        print(i)

# 印出結果
do_something(1, 2, 3, 4)
do_something("A05", "B33", "E24")

# 檔名: exercise1014.py
# 說明:《Python入門指南》的練習
# 網站: http://kaiching.org
# 作者: 張凱慶
# 時間: 2023 年 8 月

回到練習題目
上一頁 exercise1013.py
回 Python 入門指南 5.0 首頁
下一頁 exercise1015.py
回 Python 教材首頁
回程式語言教材首頁