Answer:
Sticky notes
Explanation:
I got the question correct
Answer:
editing is a word file mean making changes in the text contain is a file. or a word file is one of the most basic ms office word operation.
The answer is A create a password
They need to be close to a body of water and being in a valley is good because they are protected because they have mountains around
Answer:
def recursive_func():
x = input("Are we there yet?")
if x.casefold() == 'Yes'.casefold():
return
else:
recursive_func()
recursive_func()
Explanation:
We define the required function as recursive_func().
The first line takes user input. The user input is stored in variable x.
The next line compares the user input to a string yes. The function executes the else block if the condition isn't met, that is a recursive call is executed.
IF condition returns the function. The string in variable X is compared to a string 'Yes'. the casefold() is a string function that ignores the upper/lower cases when comparing two strings. (This is important because a string 'yes' is not the same yes a string 'Yes' or 'YES'. Two equal strings means their cases and length should match).