Data Science Hub
  • Data Science Hub
  • STATISTICS
    • Introduction
    • Fundamentals
      • Data Types
      • Central Tendency, Asymmetry, and Variability
      • Sampling
      • Confidence Interval
      • Hypothesis Testing
    • Distributions
      • Exponential Distribution
    • A/B Testing
      • Sample Size Calculation
      • Multiple Testing
  • Database
    • Database Fundamentals
    • Database Management Systems
    • Data Warehouse vs Data Lake
  • SQL
    • SQL Basics
      • Creating and Modifying Tables/Views
      • Data Types
      • Joins
    • SQL Rules
    • SQL Aggregate Functions
    • SQL Window Functions
    • SQL Data Manipulation
      • String Operations
      • Date/Time Operations
    • SQL Descriptive Stats
    • SQL Tips
    • SQL Performance Tuning
    • SQL Customization
    • SQL Practice
      • Designing Databases
        • Spotify Database Design
      • Most Commonly Asked
      • Mixed Queries
      • Popular Websites For SQL Practice
        • SQLZoo
          • World - BBC Tables
            • SUM and COUNT Tutorial
            • SELECT within SELECT Tutorial
            • SELECT from WORLD Tutorial
            • Select Quiz
            • BBC QUIZ
            • Nested SELECT Quiz
            • SUM and COUNT Quiz
          • Nobel Table
            • SELECT from Nobel Tutorial
            • Nobel Quiz
          • Soccer / Football Tables
            • JOIN Tutorial
            • JOIN Quiz
          • Movie / Actor / Casting Tables
            • More JOIN Operations Tutorial
            • JOIN Quiz 2
          • Teacher - Dept Tables
            • Using Null Quiz
          • Edinburgh Buses Table
            • Self join Quiz
        • HackerRank
          • SQL (Basic)
            • Select All
            • Select By ID
            • Japanese Cities' Attributes
            • Revising the Select Query I
            • Revising the Select Query II
            • Revising Aggregations - The Count Function
            • Revising Aggregations - The Sum Function
            • Revising Aggregations - Averages
            • Average Population
            • Japan Population
            • Population Density Difference
            • Population Census
            • African Cities
            • Average Population of Each Continent
            • Weather Observation Station 1
            • Weather Observation Station 2
            • Weather Observation Station 3
            • Weather Observation Station 4
            • Weather Observation Station 6
            • Weather Observation Station 7
            • Weather Observation Station 8
            • Weather Observation Station 9
            • Weather Observation Station 10
            • Weather Observation Station 11
            • Weather Observation Station 12
            • Weather Observation Station 13
            • Weather Observation Station 14
            • Weather Observation Station 15
            • Weather Observation Station 16
            • Weather Observation Station 17
            • Weather Observation Station 18
            • Weather Observation Station 19
            • Higher Than 75 Marks
            • Employee Names
            • Employee Salaries
            • The Blunder
            • Top Earners
            • Type of Triangle
            • The PADS
          • SQL (Intermediate)
            • Weather Observation Station 5
            • Weather Observation Station 20
            • New Companies
            • The Report
            • Top Competitors
            • Ollivander's Inventory
            • Challenges
            • Contest Leaderboard
            • SQL Project Planning
            • Placements
            • Symmetric Pairs
            • Binary Tree Nodes
            • Interviews
            • Occupations
          • SQL (Advanced)
            • Draw The Triangle 1
            • Draw The Triangle 2
            • Print Prime Numbers
            • 15 Days of Learning SQL
          • TABLES
            • City - Country
            • Station
            • Hackers - Submissions
            • Students
            • Employee - Employees
            • Occupations
            • Triangles
        • StrataScratch
          • Netflix
            • Oscar Nominees Table
            • Nominee Filmography Table
            • Nominee Information Table
          • Audible
            • Easy - Audible
          • Spotify
            • Worldwide Daily Song Ranking Table
            • Billboard Top 100 Year End Table
            • Daily Rankings 2017 US
          • Google
            • Easy - Google
            • Medium - Google
            • Hard - Google
        • LeetCode
          • Easy
  • Python
    • Basics
      • Variables and DataTypes
        • Lists
        • Dictionaries
      • Control Flow
      • Functions
    • Object Oriented Programming
      • Restaurant Modeler
    • Pythonic Resources
    • Projects
  • Machine Learning
    • Fundamentals
      • Supervised Learning
        • Classification Algorithms
          • k-Nearest Neighbors
            • kNN Parameters & Attributes
          • Logistic Regression
        • Classification Report
      • UnSupervised Learning
        • Clustering
          • Evaluation
      • Preprocessing
        • Scalers: Standard vs MinMax
        • Feature Selection vs Dimensionality Reduction
        • Encoding
    • Frameworks
    • Machine Learning in Advertising
    • Natural Language Processing
      • Stopwords
      • Name Entity Recognition (NER)
      • Sentiment Analysis
        • Agoda Reviews - Part I - Scraping Reviews, Detecting Languages, and Preprocessing
        • Agoda Reviews - Part II - Sentiment Analysis and WordClouds
    • Recommendation Systems
      • Spotify Recommender System - Artists
  • Geospatial Analysis
    • Geospatial Analysis Basics
    • GSA at Work
      • Web Scraping and Mapping
  • GIT
    • GIT Essentials
    • Connecting to GitHub
  • FAQ
    • Statistics
  • Cloud Computing
    • Introduction to Cloud Computing
    • Google Cloud Platform
  • Docker
    • What is Docker?
Powered by GitBook
On this page

Was this helpful?

  1. Python
  2. Basics

Control Flow

Control flow in Python refers to the order in which statements are executed within a program. Python provides several control flow structures that allow you to make decisions, repeat actions, and control the flow of your code. The primary control flow structures in Python include:

  • Conditional Statements (if, elif, else):

    • Conditional statements are used to make decisions in your code based on certain conditions.

    • The if statement allows you to execute a block of code if a condition is true.

    • The elif (short for "else if") statement is used to test multiple conditions if the preceding if condition is false.

    • The else statement defines what should happen if none of the preceding conditions are true.

    Example:

    x = 10 
    if x > 5: 
        print("x is greater than 5") 
    elif x == 5: 
        print("x is equal to 5")
    else: 
        print("x is less than 5")

  • Loops (for and while):

    • Loops allow you to repeat a block of code multiple times.

    • The for loop is typically used for iterating over sequences (e.g., lists, strings) or for a specified number of times.

    • The while loop continues executing a block of code as long as a specified condition is true.

    Example (for loop):

    fruits = ["apple", "banana", "cherry"] 
    for fruit in fruits: 
        print(fruit)

    Example (while loop):

    count = 0 
    while count < 5: 
        print(count) 
        count += 1

  • Break and Continue Statements:

    • The break statement is used to exit a loop prematurely, even if the loop condition is still true.

    • The continue statement is used to skip the rest of the current iteration of a loop and continue to the next iteration.

    Example (break):

    numbers = [1, 2, 3, 4, 5] 
    for number in numbers: 
        if number == 3: 
            break 
        print(number)

    Example (continue):

    numbers = [1, 2, 3, 4, 5] 
    for number in numbers: 
        if number == 3: 
            continue 
        print(number)

  • Comprehensions:

    • Comprehensions are concise ways to create lists, dictionaries, and sets using a single line of code. They often involve a for loop and an optional if condition.

    # Example - list comprehension:
    squares = [x ** 2 for x in range(1, 6)]
    
    # Example - list comprehension with if statement:
    even_squares = [num**2 for num in range(10) if num%2==0]
    
    # Example - list comprehension with if-else statement:
    even_squares = [num**2 if num%2==0 else 0 for num in range(10)]
    
    
    # Example - dictionary comprehension:
    fruit_lengths = {fruit: len(fruit) for fruit in fruits}

These control flow structures enable you to write flexible and dynamic code in Python, allowing you to handle various scenarios, make decisions, and perform repetitive tasks. Understanding how to use these constructs effectively is essential for writing efficient and readable Python programs.

Last updated 1 year ago

Was this helpful?

Page cover image