Home > Article > Backend Development > 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!