반응형
다음에서 번호 목록을 얻으려고합니다.
numbers= 1,2
에:
'1','2'
",". join (str (n) for n in numbers)
시도했지만 대상 형식을 제공하지 않습니다.
해결 방법
>>> numbers = 1,2
>>> print ",".join("'{0}'".format(n) for n in numbers)
'1','2'
참조 페이지 https://stackoverflow.com/questions/11139330
반응형
'파이썬' 카테고리의 다른 글
파이썬 Use logging print the output of pprint (0) | 2021.02.14 |
---|---|
파이썬에 정렬 된 목록이 있습니까? (0) | 2021.02.14 |
파이썬 Cartesian product of x and y array points into single array of 2D points (0) | 2021.02.14 |
파이썬 len () 함수의 비용 (0) | 2021.02.14 |
파이썬 how to issue a "show dbs" from pymongo (0) | 2021.02.13 |
댓글