A small issue...
I am geting the contents of a file from a remote server like this.
I call this finction like this
when this is executed and I print both prints the same value but lots of spaces in between exactly like this ( without ===).
================================
Value of var1 inside the func :
2.85
###
================================
How can I get rid of the spaces becasue I need this value to use in another function for using conditional operation. I need this to be displayed like this.
================================
Value of var1 inside the func :2.85 ###
================================