I have input strings that are comprised of characters, including double and single quotes " and '
B@SS$*JU(PQ AD&^%$^@!$ %()%@@DDSFD"*")(# ABD*E@(%J^&@ however, when I open the above input from a text file and just print it, the double quotes " in the third line get printed as \xe2\x80\x9d
I am aiming to do a simple character count:
B 2 @ 3 S 2 $ 3 etc. so I want to be able to output
" 3 in the above list. Should I replace the double quotes with something so I can count them and print out the count?
Thanks a lot.