I have a quick question about handling values with special characters.<br><br>Lets say I have a file which contains:<br>==================================<br> blah#blah<br>==================================<br>Here is what I have for my code:
<br> f6 = open(fileAttached)<br> msInfo = f6.readlines(); f6.close()<br> varName = msInfo[0]<br> ....<br> smtp.login(uname,varName)<br> ...<br>==================================<br>I am trying to connect to a mailserver, and it keeps failing. My guess is that the "#" sign messing up. Is there anyway to encode that character?
<br><br><br>