Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
alpakaka0o0 committed Sep 22, 2023
1 parent e8c8b47 commit e1d118c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tasks/python/easy/number_list.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Python - Easy

# TODO: Create the Simple Python Program to Interact with Lists
num_lst = [0] * 10
sum = 0
for i in range(10):
num_lst[i] = i + 1
sum += i + 1
print(num_lst)
print(sum)

0 comments on commit e1d118c

Please sign in to comment.