#python-beginner
Read more stories on Hashnode
Articles with this tag
Python Functions A function is a block of code that performs a specific task whenever it is called. In bigger programs, where we have large amounts of...
break statement The break statement enables a program to skip over a part of the code. A break statement terminates the very loop it lies...
Match Case Statements A match statement will compare a given variable’s value to different shapes, also referred to as the pattern. The main idea is...
Q No. 01: Create odd and even number program using if else statements. Information: If input = 40 so, Output = 0 (means number is even) Logic for even...
Part#1 · String Methods in Python: Python provides a set of built-in methods that we can use to alter and modify the strings. Strings are immutable - it...
Modules, Pip and First program of python · Modules in Python: A module can contain executable statements as well as function definitions. It is like a...