+ 1
Why is the answer to this code âhotpyâ ??
What is the output of this code? Text5 = âI love programmingâ Text6 = âI love scienceâ Text7 = âI love myselfâ Text = [text5,text6,text7] New = text[1][3] Print(âhâ + new + âtâ + âpâ + âyâ) ******************************* Thanks in advance!!
3 Answers
+ 2
text = [âI love programmingâ, âI love scienceâ, âI love myselfâ]
text[1] = âI love scienceâ
+ 2
Solo Solomoni Railoa Thank you both very much! Probably sounded like a silly question!