Skip to content

Commit

Permalink
Create First_Hundred_natural_no_cubic.py
Browse files Browse the repository at this point in the history
#9582c74
  • Loading branch information
ranjith-b authored Oct 26, 2018
1 parent 9582c74 commit 2065454
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions First_Hundred_natural_no_cubic.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
cubic_natural_no=[]
for number in range(1,101):
cubic_natural_no.append(number**3)

print(cubic_natural_no)

0 comments on commit 2065454

Please sign in to comment.