Answer:
Click on the F
Copy & Print
Next, click on
Last, click
Send
Save As
Explanation:
This is because save means it will save your file as the same you have made but drop do means to cut or don't save the file that's why it should be the second one means:Click on the F
Copy & Print
Next, click on
Last, click
Send
Save As
<span>To have different formatting for odd and even rows,
The option is </span><span>First Column</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
Answer:
d
Explanation:
a report with records sorted in ascending order is the right answer