Python Tuple: Easily Understand tuples with 5 examples

Quick Reach 1 What are Tuples in Python? 2 Main points about Tuple Python 3 A few examples of Tuples 4 Example of creating and accessing tuples 4.1 String tuple example 5 Accessing specific item of tuple 6 Tuple Length Example 7 Remove tuple example 8 Related What are Tuples […]

Python continue statement

Quick Reach 1 The Continue statement in Python 2 Example of using continue with while loop 3 The continue with for loop example The Continue statement in Python The python continue statement is used to skip the current block of for loop or while loop. It will not execute the next […]

Python if – 3 examples to Learn if else in Python

Quick Reach 1 Decision-making in Python 2 Types of Python if statements 2.1 The If statement 2.2 Example of using If statement in Python 2.3 Example with one true and other false in IF statement 3 Python If else statement 3.1 Syntax of if else in Python 3.2 Python else if […]

HTML ul – How to Create Unordered Lists

In This Tutorial 1 HTML ul list type 2 Applying CSS to a ul list 3 Related HTML ul list type The unordered lists in HTML are created by using the <ul> tag. Where UL means Unordered-List. A bullet list is created with no specific order. The <li> tag is used […]