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
1
1
4
4K
2
Download Image
👨💻 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)