Skip to main content

Posts

Featured

Python Tutorial - While Loop

In this blog, we are going to see the loop in the python programming language. There are two primitive loops in python. while for While loop: While loop will repeat the statement until the condition is true. While loop requires a relevant indexing variable. We will declare 'i' here. Which we will set the values as 1. Example:                   i=1                   while i<6:                   print(i)                   i+=1 Output:                1                2                3                4                5 Explanation:           ...

Latest Posts

Python Tutorial - Conditional Statement

Python Tutorial - Variables

Python Beginners Tutorial

Who is Anonymous? Hactivist Group Explained

Dark web - Explained

DDoS Attack - Explained

Brute Force Attack - Explained

Malware - Explained

Phishing Attack - Explained

Cryptography - Explained