From a0b88d5b16e7c43359f65613c73bc79a757ec915 Mon Sep 17 00:00:00 2001 From: Brian Date: Sat, 20 Oct 2018 07:20:06 -1000 Subject: [PATCH] Update index.md (#22032) --- guide/english/python/any-iterable/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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