Question Answered step-by-step Can You configure this code to not use a single letter variable…. Can You configure this code to not use a single letter variable. #This program will take a list of 10 numbers and multiplying each number by 4#and end the lining them up in the corresponding ordern =10array = []print(“Please enter “,n,”numbers below”)for i in range(n): val=int(input(“Enter number : “)) array.append(val) #Below we will multiply each number by 4print(“Multiplying each array element by 4”)for i in range(n): array[i]*=4 #Each number will be modified belowprint(“Modified array is as below”)for i in range(n): print(array[i],end=” “) Computer Science Engineering & Technology Python Programming CIS MISC Share QuestionEmailCopy link Comments (0)