Ex #1----LogsHigh = int((HLH_RoHt + 0'-3")/HLH_log_sh)
Ex #2----parameters HLH_Lo2 = str("%", LogsHigh+1)
What I'm doing is taking an int from Ex #1 and converting it to a string and the value I'm receiving is 9.000. I would like for it to only be 9 w/o the decimals places.
Here are some ways I tried it
1. parameters HLH_Lo2 = str(" ", LogsHigh+1)
2. parameters HLH_Lo2 = str(LogsHigh+1)
3. parameters HLH_Lo2 = int(str("%", LogsHigh+1))
Didn't figure that would work, but I gave it a try anyway.