Python Forum
The number of occurrences of statistical characters
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
The number of occurrences of statistical characters
#1
who can help me to resolve the question,thanks  Razz

# -*- coding:utf-8 -*-
# python 3.x
import re

patter = [chr(i) for i in range(33,126)]

with open("a.txt","r") as file:
    content = file.read()
    for i in patter:
        result = len(re.findall(r"[%s]" % i,content))
        if result != 0:
            print("%s:%d" % (i, result))
Error:
Traceback (most recent call last):   File "D:\robot\desk\Script\login_Discuz.py", line 13, in <module>     result = len(re.findall(r"[%s]" % i,content))   File "D:\Python\Python36-32\lib\re.py", line 222, in findall     return _compile(pattern, flags).findall(string)   File "D:\Python\Python36-32\lib\re.py", line 301, in _compile     p = sre_compile.compile(pattern, flags)   File "D:\Python\Python36-32\lib\sre_compile.py", line 562, in compile     p = sre_parse.parse(p, flags)   File "D:\Python\Python36-32\lib\sre_parse.py", line 855, in parse     p = _parse_sub(source, pattern, flags & SRE_FLAG_VERBOSE, 0)   File "D:\Python\Python36-32\lib\sre_parse.py", line 416, in _parse_sub     not nested and not items))   File "D:\Python\Python36-32\lib\sre_parse.py", line 523, in _parse     source.tell() - here) sre_constants.error: unterminated character set at position 0
Reply


Messages In This Thread
The number of occurrences of statistical characters - by RobertW - Dec-10-2017, 05:58 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Find if chain of characters or number Frankduc 4 1,881 Feb-11-2022, 01:55 PM
Last Post: Frankduc
  Count number of occurrences of list items in list of tuples t4keheart 1 2,454 Nov-03-2020, 05:37 AM
Last Post: deanhystad
  Count & Sort occurrences of text in a file oradba4u 7 3,187 Sep-06-2020, 03:23 PM
Last Post: oradba4u
  Translation of R Code to Python for Statistical Learning Course SterlingAesir 2 2,209 Aug-27-2020, 08:46 AM
Last Post: ndc85430
  Remove escape characters / Unicode characters from string DreamingInsanity 5 14,195 May-15-2020, 01:37 PM
Last Post: snippsat
  Counting number of occurrences of a single digit in a list python_newbie09 12 5,782 Aug-12-2019, 01:31 PM
Last Post: perfringo
  Occurrences using FOR and IF cycle P86 2 2,604 Jul-29-2019, 04:37 PM
Last Post: ThomasL
  Split Column Text by Number of Characters cgoldstein 3 3,090 Mar-11-2019, 01:45 PM
Last Post: perfringo
  Printing Easter date occurrences samsonite 8 5,193 Mar-06-2019, 11:49 AM
Last Post: samsonite
  Counting number of characters in a string Drone4four 1 3,511 Aug-16-2018, 02:33 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020