mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-30 16:31:08 +00:00
32d5c1a9b2
* Create text file for numbers * Create sol2.py * Pythonic version of Problem #16 solution * Update sol2.py * Valid Python code for Python version 2-3 * Update sol2.py
6 lines
104 B
Python
6 lines
104 B
Python
sum = 0
|
|
with open("num.txt",'r') as f:
|
|
for line in f:
|
|
sum += int(line)
|
|
print(str(sum)[:10])
|