From 78e39ee8c5933dc49f82f1de8ae24fdf194f564f Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Fri, 7 Apr 2017 19:07:17 -0400 Subject: [PATCH] sgit --- python.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/python.md b/python.md index 1390240..38a23c8 100644 --- a/python.md +++ b/python.md @@ -113,14 +113,6 @@ print a[1] #5 print a[4] #5.6 ``` -To find out the length of a list, run: - -```python -a = [1, 5, "some string", True, 5.6] -the_length = len(a) -print the_length -``` - ## Perform a set of commands depending on a situation ```python