Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- text = input("Enter a sentence")
- vowels = 0
- consonants = 0
- sp_characters = 0
- for i in text:
- if i in 'aeiou':
- vowels += 1
- elif i in '!@#$%&*().,':
- sp_characters += 1
- else:
- consonants += 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement