We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80ce728 commit 3153ee2Copy full SHA for 3153ee2
Lists.py
@@ -16,3 +16,6 @@
16
print(b) #now all list of "bol" is "true" value
17
print(len(b)) #Length can also check by len(). function
18
19
+#slicing in list
20
+print(b[0:3])
21
+#print(b[0:3:2])
README.md
@@ -159,3 +159,5 @@
159
**Can string Functions can implemen in Lists?**
160
-- Answer is Yes! but not all of them
161
- Len() to find length of list.
162
+ - Slicing also can be implement in list like "[0:4]"
163
+
0 commit comments