Skip to content

Commit 5e450f1

Browse files
authored
Update Days-11-14.md
1 parent c0f2252 commit 5e450f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Days-11-14.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
- Functions are reusable blocks of code that perform a specific task.
33
- You can define your own functions in Python.
44

5+
56
**Example of defining and calling a function:**
67
```python
78
def greet(name):
@@ -52,4 +53,4 @@ import my_module
5253
my_module.greet("Bob") # Call the greet function from the custom module.
5354
```
5455

55-
Understanding functions and modules is crucial for writing organized and reusable code in Python. You can create your own functions and modules to efficiently structure your programs and make them more maintainable. Practice with these examples to become proficient in using functions and modules in your Python projects.
56+
Understanding functions and modules is crucial for writing organized and reusable code in Python. You can create your own functions and modules to efficiently structure your programs and make them more maintainable. Practice with these examples to become proficient in using functions and modules in your Python projects.

0 commit comments

Comments
 (0)