We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# 鶴神 def crane_god(self): newjz = new_list(jiazi(), "庚申") crane_nums = [6, 5, 6, 5, 6, 5, 16, 6, 5] crane_list = list("巽離坤兌乾坎天艮震") newc_list = [] for i in range(0, 8): newc = [crane_list[i][:5]]*crane_nums[i] print(crane_list[i][:5], crane_nums[i]) newc_list.extend(newc) return dict(zip(newjz, newc_list))
for i in range(0, 8):是否应该是for i in range(0, 9): 不然这里少了一个,比如这个少了震。
for i in range(0, 8):
for i in range(0, 9):
震
The text was updated successfully, but these errors were encountered:
列表內有九個元素,用0至8去排,沒有錯誤
Sorry, something went wrong.
No branches or pull requests
for i in range(0, 8):
是否应该是for i in range(0, 9):
不然这里少了一个,比如这个少了
震
。The text was updated successfully, but these errors were encountered: