From b76e4c546a33750afe3b7522de1bc291b5bbb78d Mon Sep 17 00:00:00 2001 From: Rohit Tanwar Date: Sun, 21 Jan 2018 13:37:28 +0530 Subject: [PATCH] heading --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e2a0dcf1f..2c1ccb9f6 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ **Note**:- This is in no way affiliated with the original [30-seconds-of-code](https://github.com/Chalarangelo/30-seconds-of-code/). -# :books: List +## :books: List ### chunk @@ -198,7 +198,7 @@ zip(['a', 'b'], [1, 2], [True, False]) # [['a', 1, True], ['b', 2, False]] zip(['a'], [1, 2], [True, False]) # [['a', 1, True], [None, 2, False]] zip(['a'], [1, 2], [True, False], fill_value = '_') # [['a', 1, True], ['_', 2, False]] ``` -# :scroll: String +## :scroll: String ### count_vowels @@ -222,7 +222,7 @@ count_vowels('foobar') # 3 count_vowels('gym') # 0 ``` -# :heavy_division_sign: Math +## :heavy_division_sign: Math ### gcd