Skip to content

Commit 3d9570d

Browse files
committed
content added
1 parent 2f5fa3a commit 3d9570d

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

readme.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
<a class="header-badge" target="_blank" href="https://twitter.com/Asabeneh">
77
<img alt="Twitter Follow" src="https://img.shields.io/twitter/follow/asabeneh?style=social">
88
</a>
9-
109
<sub>Author:
1110
<a href="https://www.linkedin.com/in/asabeneh/" target="_blank">Asabeneh Yetayeh</a><br>
1211
<small> June 2019</small>
@@ -1275,7 +1274,7 @@ nums_sort =nums_one.sort() # mutate the original list and return None
12751274
print(nums_one)
12761275
print(nums_sort) # return None
12771276
nums_two = [3,1,4,2,5]
1278-
nums_sorted = sorted(nums_two) # mutate the original list
1277+
nums_sorted = sorted(nums_two) # Do not mutate the original list
12791278
print(nums_two)
12801279
print(nums_sorted)
12811280
```
@@ -2357,7 +2356,7 @@ Frequency Distribution: [(20.0, 26), (16.0, 27), (12.0, 32), (8.0, 37), (8.0, 34
23572356

23582357
<h1 align="center" style="color:#306998;font-size:64px;">REGULAR EXPRESSONS</h1>
23592358

2360-
# 📘 Day 18
2359+
23612360

23622361
## Regular Expression
23632362

@@ -4016,7 +4015,7 @@ To summarise, the main differences with python lists are:
40164015
1. An equivalent numpy array occupies much less space than a python list of lists.
40174016
1. numpy arrays support boolean indexing.
40184017

4019-
## 💻 Exercises: Day 24
4018+
## 💻 Exercises:
40204019
1. Repeat all the examples
40214020

40224021
## Pandas
@@ -5540,7 +5539,7 @@ df['Ages'] = df[df['Ages'] > 120]
55405539

55415540
```
55425541

5543-
## Exercises: Day 25
5542+
## Exercises:
55445543

55455544
1. Read the hacker_ness.csv file from data directory
55465545
1. Get the first five rows

0 commit comments

Comments
 (0)