Python Classroom image

Anil  Bist / Professional / Web Technology

 
To post your Question Join Classroom
 
Question No  (7 of 31)
First 3 I 4 I 5 I 6 I 7 I 8 I 9 I 10 I 11 Last
 
Question:-
Write a one-liner that will count the number of capital letters in a file. Your code should work even if the file is too big to fit in memory.
 
Answer:-

Let us first write a multiple line solution and then convert it to one liner code.

1

2

3

4

5

6

with open(SOME_LARGE_FILE) as fh:

count = 0

text = fh.read()

for character in text:

    if character.isupper():

count += 1

We will now try to transform this into a single line.

1

count sum(1 for line in fh for character in line if character.isupper())

  
 
 
 
image
Anil  Bist

Skills    Python

Qualifications :- High School - SLV, College/University - Graphic Era Deemed Univ University,
Location :-Dehradun,Dehradun,Uttarakhand,
Description:-

I started my Professional Journey in 2006 with one of the Web Development Company in Bangalore and my 1st framework was "Ruby on Rail" as Web development and delivered around 5+ Projects using this platform. Then came another dimension as JEE/Sturst framework, Gradually I realized that I want to build something on my own and give my passion and energy on creating something different a
Explore

 

  Students (3)

Ask 
image
Vikash
Ask 
image
Anil
Ask 
image
Anil
 
 

Recommended Classes

image shweta Pandey
Passionate about LIFE and Learning. Lets explore together better version of "self", &qu...
Professional
image shweta Pandey
Passionate about LIFE and Learning. Lets explore together better version of "self", &qu...
Professional
image shweta Pandey
Passionate about LIFE and Learning. Lets explore together better version of "self", &qu...
Professional