Skip to content

Commit 1757744

Browse files
committed
Exception Handling
1 parent 18d170e commit 1757744

File tree

3 files changed

+11
-15
lines changed

3 files changed

+11
-15
lines changed

17_Day_Exception_handling/17_exception_handling.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
- [Zip](#zip)
3232
- [Exercises: Day 17](#exercises-day-17)
3333

34-
3534
# 📘 Day 17
3635

3736
## Exception Handling

18_Day_Regular_expressions/18_regular_expressions.md

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,29 @@
1414
</div>
1515
</div>
1616

17-
[<< Day 17](../17_Day/17_exception_handling.md) | [Day 19>>](../19_Day/19_file_handling.md)
17+
[<< Day 17](../17_Day_Exception_handling/17_exception_handling.md) | [Day 19>>](../19_Day_File_handling/19_file_handling.md)
1818

1919
![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png)
2020

21-
- [📘 Day 18](#%f0%9f%93%98-day-18)
22-
- [Regular Expressions](#regular-expression)
23-
- [The *re* Module](#The-re-module)
21+
- [📘 Day 18](#-day-18)
22+
- [Regular Expressions](#regular-expressions)
23+
- [The *re* Module](#the-re-module)
2424
- [Functions in *re* Module](#functions-in-re-module)
2525
- [Match](#match)
2626
- [Search](#search)
2727
- [Searching for All Matches Using *findall*](#searching-for-all-matches-using-findall)
28-
- [Replacing a Substring](#replacing-a-Substring)
28+
- [Replacing a Substring](#replacing-a-substring)
2929
- [Splitting Text Using RegEx Split](#splitting-text-using-regex-split)
3030
- [Writing RegEx Patterns](#writing-regex-patterns)
31-
- [Square Brackets](#square-brackets)
31+
- [Square Bracket](#square-bracket)
3232
- [Escape character(\\) in RegEx](#escape-character-in-regex)
3333
- [One or more times(+)](#one-or-more-times)
3434
- [Period(.)](#period)
3535
- [Zero or more times(\*)](#zero-or-more-times)
36-
- [Zero or one times(?)](#zero-or-one-times)
37-
- [Quantifiers in RegEx](#quantifiers-in-regex)
38-
- [Cart ^](#cart)
39-
- [💻 Exercises: Day 18](#%f0%9f%92%bb-exercises-day-18)
36+
- [Zero or one time(?)](#zero-or-one-time)
37+
- [Quantifier in RegEx](#quantifier-in-regex)
38+
- [Cart ^](#cart-)
39+
- [💻 Exercises: Day 18](#-exercises-day-18)
4040

4141

4242
# 📘 Day 18
@@ -375,7 +375,6 @@ matches = re.findall(regex_pattern, txt)
375375
print(matches) # ['6,', '2019.']
376376
```
377377

378-
379378
## 💻 Exercises: Day 18
380379

381380
1. What is the most frequent word in the following paragraph?
@@ -434,8 +433,6 @@ distance = 12
434433
print(most_frequent_words(cleaned_text)) # [(3, 'I'), (2, 'teaching'), (2, 'teacher')]
435434
```
436435

437-
438-
439436
🎉 CONGRATULATIONS ! 🎉
440437

441-
[<< Day 17](../17_Day/17_exception_handling.md) | [Day 19>>](../19_Day/19_file_handling.md)
438+
[<< Day 17](../17_Day_Exception_handling/17_exception_handling.md) | [Day 19>>](../19_Day_File_handling/19_file_handling.md)
File renamed without changes.

0 commit comments

Comments
 (0)