diff --git a/guide/english/python/any-iterable/index.md b/guide/english/python/any-iterable/index.md index e6fab1d3d1..5855801b95 100644 --- a/guide/english/python/any-iterable/index.md +++ b/guide/english/python/any-iterable/index.md @@ -34,6 +34,6 @@ The `any()` operation is equivalent to (internally, may not be implemented exact print(any([0, 6, 7])) #=> True print(any([9, 8, [1, 2]])) #=> True -![:rocket:](//forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=2 ":rocket:") Run Code +Run Code Official Docs