Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Supposed to print out even numbers
Post: RE: Supposed to print out even numbers

Okay, thanks. It was bugging me because if you run it with list1 = [10, 21, 4, 45, 66, 93] it works fine.
DallasPCMan General Coding Help 4 1,946 May-21-2020, 03:54 PM
    Thread: Supposed to print out even numbers
Post: Supposed to print out even numbers

When I execute this code: list1 = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] num = 0 # using while loop while (num < len(list1)): # checking condition if num % 2 == 0: print(list1[num...
DallasPCMan General Coding Help 4 1,946 May-21-2020, 02:59 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020