Exercise 4-7 Solution Python Crash Course Chapter 4: Working With Lists

 

πŸ“˜ Python Crash Course – Chapter 4: Working With Lists – Exercise 4-7 Solution

Welcome to another solution from Python Crash Course by Eric Matthes.


πŸ“ Exercise 4-7

Task:
Make a list of the multiples of 3 from 3 to 30 . Use a for loop to print the numbers in your list

✅ Solution Code:


l = list(range(3,31,3))
for no in l:
    print(no)

🧠 Code Explanation:

This Python code demonstrates how to generate a list of multiples of 3 and iterate through it using a for loop. Here's how it works:

  1. Create a list of multiples of 3:

    The range(3, 31, 3) function generates a sequence of numbers starting from 3, ending before 31, and incrementing by 3. This ensures that only multiples of 3 between 3 and 30 are included. The list() function converts this range into a list, which is stored in the variable l.

  2. Iterate through the list:

    A for loop is used to iterate through each number in the l list. The variable no takes on each value in the list, one at a time.

This code demonstrates how to use the third argument of the range() function to generate a sequence with a specific step size and how to iterate through the resulting list.

πŸ” Output:


3
6
9
12
15
18
21
24
27
30

πŸ“š Related Exercises from Chapter 4:


πŸ”— Connect With Us:

“The only way to learn a new programming language is by writing programs in it.”
– Dennis Ritchie

πŸ“Œ Tags: #Python #PythonCrashCourse #CodingForBeginners #LearnPython #PythonProjects #PythonTips

“In the world of code, Python is the language of simplicity, where logic meets creativity, and every line brings us closer to our goals.”— Only Python

πŸ“Œ Follow Us And Stay Updated For Daily Updates

Comments