def cleanTweets(text): text = re.sub(r'@[A-Za-z0–9]+','', text) #remove the mentions text = re.sub(r'#','', text) # remove the # text = re.sub
I have a file which i have to manipulate using Python. The file consists of entries like the below student_id Name Surname DOB Sex Class Example of raw data 1
I‘m writing a todolist demo. When ng serve it, it shows an error: Error: src/app/app.component.html:17:58 - error TS2322: Type 'Event' is not assignable t
I am making a paint app in HTML using JavaScript and Flask-Python. Currently, I am able to draw lots of pencil drawings and shapes like rectangles/circles witho
I am trying to display a list where dragged item is on top. I sorted the list thats nested inside createMemo mapArray. It works in my case, but I couldn't repro
How can I make git push to push not only to origin but also another remote repository? as git push is only an alias for git push origin, can
I have a very large python code. The fundamental of that is I have a function which use a row of Dataframe and apply some formulas and save the object i've crea
When using regex to allow for case insensitivity, it only works for plain strings. The db query returns no results when parenthesis or other special characters
I'm trying to show my Data in ChartJS where the data must be shown divided by datasets of time in ticks by 30 minutes where in each dataset i must have differen