79549279

Date: 2025-04-01 22:12:09
Score: 1
Natty:
Report link

while both of those work, there is a much quicker way to do so:

words = ['This', 'is', 'a', 'list']
separator = '-'

#then, to join the words together
new = separator.join(words)
print(new)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user30081523