Skip to content

Tag: string

Draw a simple box around a string

I’m trying to learn python, and one of the “tasks” asks me to draw a box around a string. For some reason, I can’t come to a solution. This is supposed to be super basic so we can’t use functions and loops etc. Here’s the task: (I’m stuck on question 2) Load a string …

Flipping a binary in a string

I am new to python and coding in general. So what I am trying to achieve is to flip each bit in a binary string (for eg. if I input ‘110’ the output should be ‘001’). I specifically need to use the while loop and I need to define it as a function. Here is what I’ve tried so far:

Finding a specific string in a Dataframe column

I’m trying to retrieve one row of data from my Dataframe created from a csv file accessed via URL. I’m using… df1[‘Statistic Element’].str.contains(‘Mean rainfall’) …to determine the row containing the data I require however python does not recognize the .str el…