This question is incomplete. The complete question, answer & explanation for this question is given in the attachment below.
Answer:
Basically
(a+b)^2 = a^2 + b^2 + 2ab
Explanation:
steps
1: start
2: read a value
3: read b value
4: c=(a+b)*(a+b);
5: print c value
6:end
Answer:
twainQuotes = ['I have never let my schooling interfere with my education.', 'Get your facts first, and then you can distort them as much as you please.', "If you tell the truth, you don't have to remember anything.", 'The secret of getting ahead is getting started.', "Age is an issue of mind over matter. If you don't mind, it doesn't matter. "]
print(twainQuotes)
twainQuotes.sort()
print(twainQuotes)
twainQuotes.insert(1,'Courage is resistance to fear, mastery of fear, not absence of fear.' )
print(twainQuotes)
Explanation:
ok