Control flow in Python
This week I have started learning python just for the sake of picking up another programing language other than javaScript that I have been working with for years. I do very much still like javaScript a lot, and thing that it is a great starting language for people who have zero experience programing, I just think that it is time to finally start trying out something else.
Anyway one big part of learning a new language is to learn what there is to work with when it comes to control flow. That is how to go about writing basic elements of code such as if statements, while loops, and other elements of a language that control the flow of a program. In python there are a number of features that are not all that different from what I am all ready familiar with in javaScript, there are of course if statements, while loops, and functions. So in this post I will be taking a look at these various control flow options.
This post on control flow in python will be fairly basic as control flow is a basic aspect of learning a language. However it is still never the less something that I need to learn all over again even though I have years of programing experience with control flow in javaScript. Also in order to really understand how to work with control flow statements in python I am also going to need to at least learn a little when it comes to other related topics like boolean values, and expressions.