Learning Python🚀 I've embarked on a Python learning journey, mastering fundamental concepts that form the backbone of this versatile programming language. 📚 Here's a summary of what I've covered: (1 of 10) #ALX_SE #tech #100DaysOfCode #programming
👨💻 The Python Interpreter: I learnt how to interact with the Python interpreter. It works almost as the Unix Shell, when called it reads and execute commands interactively, if called with a file as STDIN, it reads and execute a script from the file. (2 of 10)
🕹️Control Flows: Learned how to Navigate the flow of py programs with if, else, and elif statements, and also with loops (for and while) ensuring logical and structured code execution. (3 of 10)
3. 🗃️Data Structures: Lists, Tuples, Dictionaries: 💡Lists: ordered collection that can contain elements of different data types. similar to arrays, it is mutable and can be indexed 💡Tuples: Similar to lists but immutable(can't be modified)