6 lines
172 B
Python
6 lines
172 B
Python
|
|
items = ["Smith", "John", "417 Evergreen Av", "Chimichurri", "481-3172"]
|
||
|
|
joined = ",".join(items)
|
||
|
|
print joined
|
||
|
|
# output:
|
||
|
|
# Smith,John,417 Evergreen Av,Chimichurri,481-3172
|