In this post, you will learn how to work with the while loop so that you can use that same knowledge and thus evolve. a cycle allows executing an instruction or a set of instructions several times; the while loop iterates according to a certain...
In this post, you will learn how to work with the for loop so that you can use that same knowledge and thus evolve. a cycle allows executing an instruction or a set of instructions several times; the for loop iterates depending on the items...
In this post, you will learn how to work with comparison operators so that you can use that same knowledge and thus evolve. == Equal != Different > Greater < Smaller >= Greater and equal <= Smaller and equal and And or Or x =...
In this post, you will learn how to work with decisions (if, elif and else) so that you can use that same knowledge and thus evolve. ''' (if) condition is true: the code inside the if is executed (elif) condition is true (elif only occurs...
In this post, you will learn how to work with lists so that you can use that same knowledge and thus evolve. a list is an ordered set of values, where each value is identified by an index; the values that make up a list...
In this post, you will learn how to work with the input() function so that you can use that same knowledge and thus evolve. the input() function has as main objective to “extract” information given by the user; in short, this same function serves to...