Answer:
d
Explanation:
cause people need a care for there incedents that not expected thats why people need help prevent from a risk to save people lives
It's specific
<span>"Instead of giving general praise or criticism, tell the person exactly what they did right or how they can improve."</span>
No sadly.
You can change your e-mail, profile picture, but that's about it.
I didn't see an option to change your name.
<span>The correct answer is
A keyword</span>
Answer:
def replace_at_index(str, number):
new = str.replace(str[number], "-")
return new
print(replace_at_index("eggplant", 3))
Explanation:
- Create a function called <em>replace_at_index</em> that takes a string and an integer
- Initialize a new variable called <em>new</em>, that will hold the new string
- Replace the character at given index with dash using <em>replace</em> function, it takes two parameters: the first is the character we want to replace, the second is the new character.
- Return the new string
- Call the function with the required inputs