Hello, Im having trouble when fecthing the 2nd and 3rd part of the IP because python thinks its a decimal and takes out my 0 from the last part , so for example I have and IP 10.x.y.1 and the x.y is in the same excel cell and has a valeu of 110.190 . When panda goes to grab it, it returns as 110.19 making the last 0 disappear. anyone know a solution for this ?
´´
equipamento = equipamentos_df.loc[equipamentos_df['GEPE'] == gepe]
xy = equipamento['z_ip_xy'].values[0]
ip = f"10.{xy}.2"
´´´