Conditionals and Loops
Control flow syntax makes use of colons and indentation or else know as white space. if some condition ,then execute some code. elif some other condition, then execute some other code. else if none of the above conditions are true , then execute some other code by default = if x: #it equates it to […]
Read More Conditionals and Loops