48,912 reputation
12972
bio website
location
age 24
visits member for 2 years, 6 months
seen 14 mins ago
stats profile views 773

19h
comment Regex in Python for html
See my edit, the issue you were seeing was due to a difference between versions.
19h
revised Regex in Python for html
added 146 characters in body
19h
comment Regex in Python for html
This indicates that soup is None, did you import BeautifulSoup and use soup = BeautifulSoup(page) before this?
19h
comment Regex in Python for html
I added an edit which includes find_all() usage.
19h
revised Regex in Python for html
added 161 characters in body
20h
answered Regex in Python for html
1d
comment Java regex error - Look-behind with group reference
Is there a set length for the strings you are checking?
May
18
answered Python print string centered
May
18
comment Why does having a literal space between regex tokens lead to different matchdata objects?
The question seemed to be more about the one word vs two word matching, rather than the contents of the groups.
May
18
answered Why does having a literal space between regex tokens lead to different matchdata objects?
May
18
awarded  java
May
17
comment Subclasses vs Mixins in Python
Actually I'm 2 seconds more adept than David and 13 seconds more adept than you, give me some credit :p
May
17
awarded  Good Answer
May
16
comment Regex expression to check for string name with underscore in java
Just added that to my answer for clarity, but when asking for a regular expressions I think it makes more sense to give it in the format expected by the regex engine unless they are asking for code in a particular language.
May
16
answered Regex expression to check for string name with underscore in java
May
16
comment Calculate a discrete mean in python
You are reassigning a new value to sr_vr on each iteration, when you want to be keeping a running total instead. So you would put sr_vr = 0 before the loop and then inside the loop you would use sr_vr += L[i]*(i+1).
May
16
revised Calculate a discrete mean in python
added 252 characters in body
May
16
answered Calculate a discrete mean in python
May
16
answered List of dictionaries from pairs in list
May
16
answered How to print a for loop as a list