반응형
다음과 같이 for 루프를 갖고 싶습니다.
for counter in range(10,0):
print counter,
출력은 109876543 2 1이어야합니다.
해결 방법
a = " ".join(str(i) for i in range(10, 0, -1))
print (a)
참조 페이지 https://stackoverflow.com/questions/4767401
반응형
'파이썬' 카테고리의 다른 글
파이썬 keras의 preprocess_input () 메서드 (0) | 2020.10.14 |
---|---|
파이썬 Python에서 이미지의 exif 데이터를 어떻게 읽습니까? (0) | 2020.10.14 |
파이썬 How to break a line of chained methods in Python? (0) | 2020.10.14 |
파이썬 How do I do greater than/less than using MongoDB? (0) | 2020.10.14 |
파이썬 FutureWarning : issubdtype의 두 번째 인수를`float`에서`np.floating`으로 변환하는 것은 더 이상 사용되지 않습니다. (0) | 2020.10.14 |
댓글