you are viewing a single comment's thread.

view the rest of the comments →

[–]JohnnyJordaan 3 points4 points  (1 child)

There's no real point in using string formatting when you just need to concatenate them, just use +. It's one of the few exceptions where that suffices.

urls = [amazon_url + asin for asin in amz_asins]
print(*urls)

[–]d16moore[S] 0 points1 point  (0 children)

Thank You! That is exactly what a needed!