I'm new to Python, sorry for the level of this question.
This is my output (prices from a website). I'm wondering how to convert them into a list of ints
for price_list_items in price_list:
for values in price_list_items:
x= values.rstrip(' zł')
print(x)
479 000
355 000
269 000
499 000
289 000
The desired result will like this [479 000,355 000,... ]. Also, I want to be able to perform basic with the values. I found this thread How to convert a for loop output into a list (python), but it didn't help me.