Python Statements, Indentation and Comments

Python statements and comments; Through this tutorial, i am going to show you what is python statements, indentation and comments and how to use it with examples. Python Statements Indentation and Comments Example Python Statement Python Indentation Python Comments Python Statement In python programming, A statement is a logical instruction. Which can read and execute … Read more

Python Global Keyword

Python global keyword; Through this tutorial, i am going to show you what is global keyword in python and how to use it. Global Keyword in Python Now i will show you what is the global keyword in Python. What are the rules for writing this and how do you use the global keyword in … Read more

Python Random Number Generator Code

Generate random number code in python; Through this tutorial, i am going to show you how to generate random number between 1 to 8, 10 in Python using a random module and other available modules. There are 4 methods available in python to generator random number code; as shown below: numpy.random.rand() numpy.random.randint() numpy.random.randn() numpy.random.random() Python program to … Read more