## My Week 5 at Blockfuse Labs: Diving Deep into Python
This week at Blockfuse Labs was one of my most exciting weeks yet! As part of my journey into programming, I focused on learning more about Python
In Week 5, I learn three important concepts in Python: split() and modules
### SPLIT METHOD
One of the things I learned this week was how to use the split() method in Python.
Imagine you have a sentence like:
"Hello guys, I love blockfuse labs"
Now, what if you want to break this sentence into words? That’s where split() comes in!
`message = "Hello guys, I love blockfuse labs"
words = message.split()
print(words)
`
the output will be like this:
['Hello', 'guys,', 'I', 'love', 'blockfuse', 'labs']
### MODULES
I learned about modules.a module is like a tool,that help you do different things.
For example, Python has a module called math which gives you access to mathematical functions though we were not taught the math function for now.
```
number =5%3
print(number)
```
the output will be 3(it will always print the remainder)
### CONCLUSION
Week 5 at Blockfuse Labs gave me a solid foundation in some of Python’s core features. Understanding how to split strings, use moduleshelped me write cleaner code.
I’m really enjoying this journey, and I can’t wait to learn more next week. Step by step, I’m becoming a better developer