If anyone has the 2.3.3 python documentation then you can find this in the tutorials on number 7. if you dont then i hope you know what i am talking about.
a part of the page says this:
"One question remains, of course: how do you convert values to strings? Luckily, Python has ways to convert any value to a string: pass it to the repr() or str() functions. Reverse quotes (``) are equivalent to repr(), but their use is discouraged. "
2.3.3 is the most updated version of python yet they discourage the use of repr() and str() functions.. What do i use in replacement of those functions?
a part of the page says this:
"One question remains, of course: how do you convert values to strings? Luckily, Python has ways to convert any value to a string: pass it to the repr() or str() functions. Reverse quotes (``) are equivalent to repr(), but their use is discouraged. "
2.3.3 is the most updated version of python yet they discourage the use of repr() and str() functions.. What do i use in replacement of those functions?
Comment