Hi,
Edit the view file product / listing_price via the menu Display>Views.
There, change the line:
echo $this->currencyHelper->format(@$price->price_value_with_tax, $price->price_currency_id);
to:
echo round(@$price->price_value_with_tax) . ' €';
Note that this assumes that you're only display the prices with the euro currency. If you need to handle several currencies, then, you have to load the currency data from the database based on $price->price_currency_id so that you can display the currency symbol dynamically.