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

青灯夜游
Release: 2020-07-22 10:33:52
Original
11489 people have browsed it

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
Copy after login

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)
Copy after login

Look at the output results:

17
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!