Answer:
ok
Princess_Anyla/nka8iza0q6lm8dm1
Step-by-step explanation:
Answer: He would have $1.33 after 3 years glad to help please mark brainliest!
Step-by-step explanation:
using simple interest formula: A = P(1 + r)^t
A= Total amount in 3 years
P=starting total
r=rate of percent as a decimal
t=time in years
A=1(1+0.10)^3
A=1(1+0.10)^3
A=1(1.10)^3
A=1(1.331)
A=1.331
A=1.33
Answer:
Step-by-step explanation:
To solve this problem we are going to set Python as the language.
books = ["a", "b", "c", ... , "z"]
selection = list(3) #here we set a list of dimension 3 as 3 are supposed to be selected
for book in books: #here we parse into the books list
If book in selection: continue #in order to obtain different books, if the book #already in selection list, then we jump
selection.append(random.choice(books)) #if not, we add the book to #selection
print(selection)