Files
DCS229/hello_world.py
2026-01-16 09:57:25 -05:00

8 lines
189 B
Python

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