Skip to Content
Menú
This question has been flagged
2 Respostes
5649 Vistes

Hi friends,

I have a char field,which has formula for calculations (char field value is 0.17*(@tw)+0.6*(@tw-500) ).Here i need to replace @tw with some float value and do calculations and need to return float value.How to achieve this.

Thanks in advance.

Avatar
Descartar
Autor

it shows invalid syntax error on .20*@tw

use it without @

just 0.20*tw

its working

Best Answer

hello vadivel

you can do it with "eval" method

def formula( self ):     
    tw=10 #your value
  return eval ('0.17*(tw)+0.6*(tw-500)')

Good Luck


Avatar
Descartar
Related Posts Respostes Vistes Activitat
1
de set. 19
4225
0
d’abr. 24
2161
4
de nov. 23
6354
0
d’oct. 23
2059
0
de des. 22
2883