Completed 4-4 One Million

This commit is contained in:
cheeks 2025-01-21 11:59:33 -05:00
parent 70240c3f8d
commit baec2f976c

View File

@ -0,0 +1,5 @@
# Excercise 4-4 One Million
# Learning Objective: Create a list from a for loop utilizing range method.
myList = [value for value in range(1, 1_000_001)]
print(myList)