Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Student's Guide to Python 3 - Part 3
Rating: 4.3 out of 5(37 ratings)
7,606 students

Student's Guide to Python 3 - Part 3

Learn Python 3, a great introductory course for students
Created byPaul Kang
Last updated 6/2020
English
English [Auto],

What you'll learn

  • Python 3

Course content

2 sections24 lectures1h 47m total length
  • Looping Through Lists and Strings6:42

    Learn to loop through lists and strings with python 3 by using for loops to iterate over each element and print or process names or letters.

  • Looping Through Lists and Strings Exercises0:30
  • Range Based Loops8:19

    Master range based loops in Python by using range(start, stop) with for loops to iterate numbers from zero up to but not including stop, and print or utilize each value.

  • Range Based Loops Exercises0:23
  • Nested Loops4:45

    Explore nested loops by iterating over a list of lists representing classroom groups, and print each student's name by looping through each group and its members.

  • Nested Loops Exercises0:22
  • While Loops7:39

    Learn how while loops run until a condition is met using a counter and avoiding infinite loops. See examples like printing hello and computing power of two from user input.

  • While Loops Exercises0:34
  • Break and Continue9:33

    Explore break and continue in loops, using continue to skip iterations and break to exit when a target is found, as shown with defects in a factory and pi.

  • Break and Continue Exercises0:32
  • List Comprehension7:23

    Unlock Python’s list comprehension to build, transform, and filter lists in one line, generating numbers 1 to 10 and copying lists to select even numbers with conditions.

  • List Comprehension Exercises0:25
  • Project: Clothing Store1:48
  • Project: Clothing Store - Solution and Walkthrough19:18

    Explore building a clothing store data model with loops and list comprehensions. Walk through computing total items and value, updating stock after sales, and filtering budget items with list comprehension.

Requirements

  • Student's Guide to Python 3 Part 2

Description

As our world becomes more and more technologically advanced, we become immersed in a digital era. In these modern times, it is important to learn how to code, and especially important for students to learn as the possibilities surrounding code are infinite. Especially with the current advent of machine learning, Python is one of the easiest and most powerful languages available, and having it in your arsenal is an excellent tool in this day and age. This is Part 3 of a 4 part course in Python.

Who this course is for:

  • Students with little/no experience coding