From 54b3d17523a8e66a5b51b0d765d679ee9f5ef657 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Wed, 11 Nov 2020 11:32:09 +0200 Subject: [PATCH] Update python-lists-tuples.md --- blog_posts/python-lists-tuples.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/blog_posts/python-lists-tuples.md b/blog_posts/python-lists-tuples.md index 97a58054a..c4527b42c 100644 --- a/blog_posts/python-lists-tuples.md +++ b/blog_posts/python-lists-tuples.md @@ -7,6 +7,8 @@ cover: blog_images/python-lists-tuples.jpg excerpt: Learn how Python's lists and tuples are different and level up your code today. --- +Python's lists and tuples may seem pretty similar in syntax and function, however they have some major differences the most important of which is the fact that lists are mutable and tuples aren't. Here's a quick breakdown: + ### Lists - Syntax: `[1, 2, 3]`