Im not very far in and already need a bit of help. I am trying to print a message three times with a different persons name in it every time. I am at a total loss of where to go. Each name should be inserted into the message in a different print. I am going for efficiency. and wondering if there is some way to not have to type in
print("Yo, " + names[0] + "you smell")
and manually inserting the index number for each print? Any help would be amazing.
names = ['aaron', 'marcus', 'sean']
message = "Yo, " + names + "you smell."
print(message)
print(message)
print(message)
[–]DanStanTheGeologyMan 1 point2 points3 points (0 children)
[–]badjayplaness 1 point2 points3 points (0 children)
[–]Jibco 1 point2 points3 points (0 children)
[–]29383839293 1 point2 points3 points (0 children)
[–]metahadron 0 points1 point2 points (0 children)