Python coding
Good morning Everybody, once again I have come with something exclusive.
Today I will be discussing about the term coding. Coding refers to Computer language. I will be discussing with you some basic function
print(” “) It refers to printing what we type inside.
len(” “) It refers to printing how many characters are there in a word or sentence with spaces
variable(a,e,g,u) It refers to store data in small letters or words
dictionary{} It stores pairs a combination of keys and values.
list[ ] It store important information such as daily routine etc.
tuple() It is like list but it is immutable. Different from lists once made cannot be changed.
Variable.(special functions) They specify what to do with the specific variable that we made
for loop It repeats the line over and over until iteration is not completed
While loop It repeats the line over and over while there is increment and decrement and the condition is True.
Break and continue. They both are used in loops. Break breaks the loops if the condition is true. On the other hand Continue skips the iteration if the condition is true
Leave a Reply