I am new in python and im trying to convert the list
L =["11.4K" , "550" , "1.23M" , "30"]to :
L=["11400" , "550" , "1230000" , "30"]
I believe that K means 1000 and M means 1000000
Note: what if only one number in the list is in the form of K or M and what happens if the position of displayed numbers ( K, M )
will not remain in the same place of the list.
eg: what happens in this case: L1=[23 , 9.7K , 34 , 900]
convert to : L1=[23 , 9700 , 34 , 900]