Python 入門指南 5.0

exercise2607.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# 引入 Point 定義
from exercise1810 import Point
# 引入 Lion 定義
from exercise1812 import Lion
# 引入 copy
import copy

# 在地圖上印出動物的函數
def print_world(animals, world):
    # 深度拷貝原始地圖
    real_world = copy.deepcopy(world)
    # 在新地圖上加入動物
    for animal in animals:
        # 取得動物座標
        x = animal.point.x
        y = animal.point.y
        # 在地圖上置換成動物名稱
        i = 0
        while i < len(real_world):
            j = 0
            while j < len(real_world[i]):
                if i == y and j == x:
                    real_world[i][j] = animal.name
                j += 1
            i += 1
    # 印出新地圖
    for row in real_world:
        for column in row:
            print(column, end=" ")
        print()

# 執行部分
if __name__ == '__main__':
    # 建立動物串列
    animals = [Lion(Point(1,1), "Red"),  Lion(Point(2,2), "Blue")]
    # 設定地圖
    world = [["口", "口", "口", "口"],
             ["口", "口", "口", "口"],
             ["口", "口", "口", "口"],
             ["口", "口", "口", "口"]]
    # 印出地圖
    print_world(animals, world)

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

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