Answer:
I believe its the last question
Explanation:
I will attach the answers below. The number of characters is beyond the default characters required.
De Gaulle was not afraid to make controversial decisions. After coping with uprisings in Algeria for years, he helped the French colony achieve independence in 1962.
Scenarios are created and simulated in order to <span>perform a what-if analysis with more than two input cells. These scenarios are very essential to the development of the study of different variables affecting the two input cells who be assessed properly by manipulating and controlling them for the desired outcome.</span>
def replace_at_index(txt,ind):
new_txt = ""
for x in range(len(txt)):
if x == ind:
new_txt += "-"
else:
new_txt += txt[x]
return new_txt
s = replace_at_index("eggplant", 3)
print(s)
I wrote my code in python 3.8. I hope this helps.