Answers for "python str of list"

0

python str of list

>>> x = ['abc', 'def', 'ghi']
>>> str(x)
"['abc', 'def', 'ghi']"
Posted by: Guest on April-24-2022

Python Answers by Framework

Browse Popular Code Answers by Language