mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-02-22 17:22:04 +00:00
* 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])
|