Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~163 People Reached
Favorite Forums
Favorite Tags
Member Avatar for georgieporgie

no idea why my program is not reading the text file correctly am I doing something wrong, here is what i have so far import string count = 0 infile = open("text.txt", "r") uppercasecount, lowercasecount, digitcount = (0, 0, 0) def main(): for character in infile.readlines(): if character.isupper() == True: …

Member Avatar for woooee
0
163