📜  python 打印 xy 坐标 - Python (1)

📅  最后修改于: 2023-12-03 14:46:15.200000             🧑  作者: Mango

Python 打印 xy 坐标

在 Python 中,我们可以使用 print() 函数来打印出我们所需要的任何信息,包括 xy 坐标。

打印 x, y 坐标

以下是一个简单的示例,演示如何在 Python 中打印 x, y 坐标。

x = 5
y = 7

print("x 坐标:", x)
print("y 坐标:", y)

输出结果:

x 坐标: 5
y 坐标: 7
打印多组坐标

我们也可以打印出多组坐标,示例如下:

coordinates = [(3, 4), (5, 6), (7, 8)]

for coordinate in coordinates:
    x, y = coordinate
    print("x 坐标:", x, "y 坐标:", y)

输出结果:

x 坐标: 3 y 坐标: 4
x 坐标: 5 y 坐标: 6
x 坐标: 7 y 坐标: 8
打印到文件

如果我们想要将坐标打印到文件中,我们可以使用 Python 的文件操作。

with open('coordinates.txt', 'w') as file:
    coordinates = [(3, 4), (5, 6), (7, 8)]
    for coordinate in coordinates:
        x, y = coordinate
        file.write('x 坐标:' + str(x) + ' y 坐标:' + str(y) + '\n')

这将创建一个名为 coordinates.txt 的文件,并将坐标写入其中。

结论

在 Python 中,通过使用 print() 函数,我们可以轻松地打印 x, y 坐标。如果我们想要将这些信息打印到文件中,我们可以使用 Python 的文件操作来实现。