将位置坐标转换为 Python 中的元组
当需要将位置坐标转换为元组格式时,可以使用“eval”方法。
“eval”方法解析作为参数传递给它的表达式。它将那些参数作为代码执行。它返回从“expression”(即参数)中评估的结果。
以下是同样的一个演示:
示例
my_string = "67.5378, -78.8523" print("The string is : ") print(my_string) my_result = eval(my_string) print("The coordinates after converting the string to tuple is : ") print(my_result)
输出
The string is : 67.5378, -78.8523 The coordinates after converting the string to tuple is : (67.5378, -78.8523)
解释
- 定义一个字符串,并显示在控制台上。
- 使用“eval”方法,并将字符串作为参数传递给它。
- 这被分配给一个值。
- 它显示在控制台上。
广告