Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: How to convert dates in odd format to months
Post: RE: How to convert dates in odd format to months

Thank you! That worked wonderfully.
lokhtar General Coding Help 2 2,221 Apr-17-2021, 11:54 AM
    Thread: How to convert dates in odd format to months
Post: How to convert dates in odd format to months

So I have a column called 'age' in my sql column that is inconsistent in format. It lists ages of kids in days, weeks or months. For example: Output:0d 6d 7d 1w, 3d 7w, 5d 4m 5mWhat I want to do is ...
lokhtar General Coding Help 2 2,221 Apr-17-2021, 12:40 AM
    Thread: Adding a new column to a dataframe
Post: Adding a new column to a dataframe

Hello, I am working with covid-19 data, and I am trying to add a new column to the dataframe based on the datetime, converting it to a day of the week. import pandas as pd url='https://raw.githubus...
lokhtar General Coding Help 2 3,150 Jan-14-2021, 03:45 PM
    Thread: Remove a sentence if it contains a word.
Post: RE: Remove a sentence if it contains a word.

str_to_clean = "This is an example of a paragraph that I have. I would like to remove any sentences containing certain words, for example the word bad, or naughty. If it has bad, I don't want it. If i...
lokhtar General Coding Help 6 5,899 Feb-11-2020, 04:33 PM
    Thread: Remove a sentence if it contains a word.
Post: RE: Remove a sentence if it contains a word.

Thanks! I looked into that, but it simply replaces the words - I need to remove the whole sentence. I have it working where I go through the paragraph by line (each '.' is a new loop), and then comb...
lokhtar General Coding Help 6 5,899 Feb-11-2020, 02:59 PM
    Thread: Remove a sentence if it contains a word.
Post: RE: Remove a sentence if it contains a word.

str_to_clean = re.sub("^.*\b(bad|naughty)\b.*$", "", str_to_clean, flags=re.IGNORECASE)
lokhtar General Coding Help 6 5,899 Feb-10-2020, 04:38 AM
    Thread: Remove a sentence if it contains a word.
Post: Remove a sentence if it contains a word.

I have a paragraph, contained in a string variable, that looks like this: Quote:This is an example of a paragraph that I have. I would like to remove any sentences containing certain words, for exam...
lokhtar General Coding Help 6 5,899 Feb-10-2020, 03:11 AM
    Thread: CSV file escaping characters
Post: RE: CSV file escaping characters

Hmm, well there actually might be. But I might be able to manually remove that if necessary prior to reading the file.
lokhtar General Coding Help 2 2,685 Dec-09-2019, 06:48 PM
    Thread: CSV file escaping characters
Post: CSV file escaping characters

Hello, I am trying to do something relatively simple - load a csv file and create a list (or a dataframe). The separator for my file is "|", but the data in my csv file can have all the other charac...
lokhtar General Coding Help 2 2,685 Dec-09-2019, 06:06 PM
    Thread: Extracting information from a file
Post: RE: Extracting information from a file

Thank you!
lokhtar General Coding Help 6 2,911 Dec-09-2019, 05:57 PM
    Thread: Extracting information from a file
Post: RE: Extracting information from a file

It won't let me upload files on this forum for some reason, so I uploaded it on the website: http://s000.tinyupload.com/download.php?...4983370453
lokhtar General Coding Help 6 2,911 Dec-06-2019, 06:07 PM
    Thread: Extracting information from a file
Post: Extracting information from a file

Hello guys, I have a directory with a lot of text files, I need to loop through them and extract a certain section from them. The Text files are formatted in a standard way, in this way: Quote:ABC:...
lokhtar General Coding Help 6 2,911 Dec-06-2019, 03:39 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020