Posts

Showing posts from December, 2023

More Python programming

                                                                               More python programming. Objective: To know more of Python. If you haven’t read (past tense) the previous information then, read the first post https://bennyasare.blogspot.com/2023/10/python-and-crafting-pac.html before you read this one. int= it stands for integer. It works like the print command and a variable but instead, it uses numbers instead of text. Example: int=1*4 Here are the arithmetic operators in I.C.T: *=multiplication /=Division +=Addition -=Subtraction **=Exponentials str=it stands for string. It works like the print command and a variable, but you can type text or any characters but in the speech marks. Example: str=” Hello my friend’’ Or: str= (” Hello my friend”) N...