NOTE: These programs do not give very good prompts and outputs and comments - in a normal program, you would want to make sure to always give detailed prompts, outputs and comments. They are missing in these programs so that you are not given any clues as to what the program does. # Program 1 name = input() while not name.isalpha(): name = input() print(name.capitalize()) # Program 2 count = 0 sentence = input() for letter in sentence: if letter in "aAeEiIoOuU": count = count + 1 print(count) # Program 3 letter = input() word = "antidisestablishmentarianism" for char in word: if char == letter: print(char) # Program 4 letter1 = input() letter2 = input() while letter2 == letter1: letter2 = input() alpha = "AbCdefGHiJKLmnoPqRsTUvwxyZ" location1 = alpha.find(letter1.lower()) location2 = alpha.find(letter2.lower()) if location1 == -1: letter1 = letter1.upper() else: letter1 = letter1.lower() if location2 == -1: letter2 = letter2.upper() else: letter2 = letter2.lower() alpha = alpha.replace(letter1, letter2) print(alpha)
Answers
Answered by
0
Answer:
não falo inglês
Explanation:
tem como colocar em português?
Similar questions
Computer Science,
1 month ago
Math,
1 month ago
English,
8 months ago
English,
8 months ago
Physics,
8 months ago