Home  >  Article  >  Backend Development  >  How to count the number of uppercase letters in a file in python?

How to count the number of uppercase letters in a file in python?

青灯夜游
青灯夜游Original
2020-07-22 10:33:5211490browse

How to count the number of uppercase letters in a file in python?

Python calculates the number of uppercase letters in a file

First prepare a file 123.txt locally. The content is as follows. Of course you can do whatever you want wrote.

dsggsa
asfaf
DFV
DFDFSDF
dsfsdAFAFAFA

Then it’s time to code.

with open('123.txt','r') as file:
    count=0
    content=file.read()
    for i in content:
        if i.isupper():
            count+=1

print(count)

Look at the output results:

17

Recommended learning: Python video tutorial

The above is the detailed content of How to count the number of uppercase letters in a file in python?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn