Pyupgrade to Python 3.9 (#4718)
* Pyupgrade to Python 3.9
* updating DIRECTORY.md
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@@ -43,7 +43,7 @@ def page_rank(nodes, limit=3, d=0.85):
|
||||
print(f"======= Iteration {i + 1} =======")
|
||||
for j, node in enumerate(nodes):
|
||||
ranks[node.name] = (1 - d) + d * sum(
|
||||
[ranks[ib] / outbounds[ib] for ib in node.inbound]
|
||||
ranks[ib] / outbounds[ib] for ib in node.inbound
|
||||
)
|
||||
print(ranks)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user