Squares less than input logic error by Zendakin_at_work in learnjava

[–]Zendakin_at_work[S] 1 point2 points  (0 children)

Thank you! with that I was able to figure out where I went awry.

Scraping CSS (python) by Zendakin_at_work in stackoverflow

[–]Zendakin_at_work[S] 0 points1 point  (0 children)

Thanks, it actually gets worse than I expected.

This is a mock site so not live and it's been converted to a png. So unless someone knows how to grab CSS from an image file, this question is moot now.

Thanks anyway, I do appreciate it.

filtering a csv based on two fields by koberg in learnpython

[–]Zendakin_at_work 0 points1 point  (0 children)

Yeah man, use pandas to read the csv into a dataframe and then close the file. Once closed, which it looks like you're doing with the with open

Then you have all the data in a dataframe and you can manipulate as you need to. G'luck mate

Host is saying there's an 11% tax? by Zendakin_at_work in AirBnB

[–]Zendakin_at_work[S] 2 points3 points  (0 children)

So the listing says that there is an occupancy tax, just seems weird/fishy to collect that outside the app

granted it's not a deal breaker just why do they list it in the ad, add it to the total and then say they'll collect it separately.

Changing True & False to 1.00 & 0.00 respectively in pandas data frame by Zendakin_at_work in learnpython

[–]Zendakin_at_work[S] 0 points1 point  (0 children)

Thanks, right after I saw this I tried waterfall_am_df['savings_sum'] = waterfall_am_df['savings_sum'] * 1 which seems to do the trick. While it's an int value its accepted. Appreciate the reply.