gpt4 book ai didi

python - 将行星经度转换为 360 度格式的 python 代码

转载 作者:行者123 更新时间:2023-12-01 07:58:11 24 4
gpt4 key购买 nike

通常的做法是提及行星的经度通过它的 rasi 位置和度数。

示例:太阳位于处女座 23 度。要将其转换为 360 度格式,您必须将 virgo 的起点添加 150 度。 23 度与 150 度相加得到 173 度。

我有字典:

RasiDegree={"Aries":0,"Tarus":30,"Gemini":60,"Cancer":90,"Leo":120,

“处女座”:150、“天秤座”:180、“天蝎座”:210、“射手座”:240、“摩羯座”:270、“水瓶座”:300、“双鱼座”:330}

for rasi,degree in RasiDegree.items():
print(rasi, degree)

打印输出正确。
要访问任何特定的 rasi,我的代码是 print(RasiDegree["rasi"])

到目前为止一切顺利。我如何编写Python程序来计算上述内容。我试图获取用户输入的 rasi 和学位。我被困住了。我应该写一个函数吗?

任何帮助将不胜感激。

最佳答案

使用下面的函数。该函数将用户的姓名和学位作为输入并以 360 度格式返回。

def calculate():
rasi = input()
degree = input()
if(rasi in RasiDegree.keys()):
return RasiDegree[rasi]+int(degree)

关于python - 将行星经度转换为 360 度格式的 python 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55841844/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com