Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 28, 2020 06:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save computer-tutor/96b98ab44d056546e111d1678195dd7c to your computer and use it in GitHub Desktop.
Save computer-tutor/96b98ab44d056546e111d1678195dd7c to your computer and use it in GitHub Desktop.
f = open('Article.txt','r')
c_up=0
ch = f.read(1)
while ch:
ch=f.read(1)
if ch.isupper():
c_up+=1
print("Number of Uppercase alphabets is/are:",c_up)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment