Hi,
for example in sale.order.line model we have price_unit field, but in front view we see "Unit Price"
price_unit = fields.Float('Unit Price', required=True, digits=dp.get_precision('Product Price'), default=0.0)
How to pull out this text through a python? such as such
test = self.env['sale.order.line'].browse(1).price_unit.string
and in test variable will be "Unit Price"