Python List - Ex04

Write a Python program that uses a while loop to generate numbers from 1 to 50, increasing by 3 in each step. The program should then merge all the numbers into a single string and print the result.

2.

Use a while loop to iterate through the numbers.

1

Convert each number from the loop to be String with str() function and Accumulate them to be one string

2

Output: "1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34, 37, 40, 43, 46, 49"

( The variable "i" increases from 1 to 50, each step increases 3 )

Save your file as "ClassNumber_YourName_Ex04.py"

F4 Lesson07 - List Ex02

By Mr Peter

F4 Lesson07 - List Ex02

  • 294