Today is my 14th day of #100DayaofCode. Today I worked in some assignment on python to access web data in coursera.
Also I learned more properties of CSS including introduction to the applied accessibility challenges, add a text alternative to images for visually impaired accessibility, use heading to show hierarchical relationships of content, jump straight to the content using the main element etc form Freecodecamp.
Finding Numerical Data From File And Summing Them
At first we start with importing regular expression as re, operator and reduce.
import re
import operator
from functools import reduce
I opened the file and read through each lines. I make a list whose name is total. Then I star looping and remove whitespace with rstrip()
. In words I applied re.findall method which include any digit in the line. If line does not contain numbers then it skip that line and continue and my program is given below. num includes all the numbers from words. I kept in total's list.
fh=open('file2.txt').readlines()
total=[]
#print(fh)
for line in fh:
line=line.rstrip()
words=re.findall('[0-9]+',line)
#print(words)
if len(words) == 0: continue
num= [int(i) for i in words]
total.extend(num)
print(total)
summ= lambda total: reduce(operator.add, total)
print(summ(total))
Day 14 of #100DaysOfCode and #Python
— Durga Pokharel (@mathdurga) January 7, 2021
* More Properties of CSS including introduction to the applied accessibility challenges
* Python to access web data from coursera
* Finding numerical data and summing them pic.twitter.com/d5wnTEt6XL
Top comments (3)
Has a typo,
summ
In all, you a lambda function. I don't remember the last time I did use a lambda function.
pardon me, I mistook
summ
as a typo forsum
, which is a built-in function that performs the same functionality as thesumm
. I run your code not long from now.was translated
In all, all is good. Thanks!!
yeah that's cool