+ 1
How do I make a code which counts symbols only in Python
4 Respostas
+ 3
What kind of symbols did you mean?
And you wanna count something like occurance of each symbol? Then dictionary has got your back.
Kindly give more details regarding your question.
+ 3
hi,
if you want to count number of symbols in a string you can use this:
https://code.sololearn.com/c9O9g0v5aaN8/?ref=app
It uses a defined string from module string that contains all “punctuations” that is what you called “symbols”?
+ 1
Symbols like these @#amp;
like these special symbols
+ 1
And what is that?