Skip to content

Instantly share code, notes, and snippets.

  • Save T-Bharath/08e305407d3f5e845a03a46b357a9443 to your computer and use it in GitHub Desktop.
Save T-Bharath/08e305407d3f5e845a03a46b357a9443 to your computer and use it in GitHub Desktop.
import re
f = open("1234.txt")
x = list()
for l in f:
l = l.rstrip()
a = re.findall('[0-9]+',l)
for b in a:
c = int(b)
x.append(c)
print(sum(x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment