hello_world

This commit is contained in:
2026-01-16 09:57:25 -05:00
parent e0340cc3e1
commit efa0686d27

8
hello_world.py Normal file
View File

@@ -0,0 +1,8 @@
print("Hello World")
#Function that takes in a list of numbers and returns the sum of all numbers
def numSum(numList):
sum = 0
for num in numList:
sum += num
return sum