diff --git a/guide/english/python/basic-operators/index.md b/guide/english/python/basic-operators/index.md index 7bec618152..84b100185d 100644 --- a/guide/english/python/basic-operators/index.md +++ b/guide/english/python/basic-operators/index.md @@ -318,4 +318,9 @@ a = [10,20,30] b = [10,20,30] print a is b # prints False (since lists are mutable in Python) + +print(str1[:4]) +# Above code gives the output as Free +print(str[4:]) +# Above code gives the output as CodeCamp ```