Answer:
See explaination
Explanation:
def main():
phrase = input('please enter a phrase: ')
acronym = ''
for word in phrase.split():
acronym += word[0].upper()
print('Acronym for ' + phrase + ' is ' + acronym)
main()
See attachment for the output
Pivot table is the answer
The information technology at the Home Depot allows for example, all the stock in the store to be listed on the computer with all its specifications and whether or not it is in stock and how many left in stock and where . Also, when something is ordered from Home Depot like a machined door then all the specs of the order will be digital and also the status of it and when it will/should be available and the cost.
If, in a recursive solution, function A calls function B which calls function C, this is called<u> Indirect</u> recursion.
A recursive algorithm is said to be recursive if such an algorithm calls itself with smaller input values and get current result for implementing basic operations on those simple inputs.
Indirect recursion occurs when a function A invokes another function B which in turn makes it the original function and calls another function C.
Learn more about recursion here:
brainly.com/question/3169485?referrer=searchResults