일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- nav2 tutorial
- CODEUP 6073
- ros2 development guides
- Nav2 document
- foxy nav2
- CodeUp
- humble 환경설정
- nav2 development guides
- humble development guides
- nav2 dev contatiner
- development guides
- ros2 foxy docker
- nav2 first-time robot setup guide
- ROS FOXY 튜토리얼
- nav2 튜토리얼
- first-time robot setup guide
- Python
- error
- ros2 튜토리얼 환경설정
- Foxy tutorial
- nav2 getting started
- ros2 튜토리얼
- ros2 remapping
- nav2 development guides
- 코드업
- ros2 foxy tutorial
- docker foxy
- nav2 설치
- ros2 환경설정
- ros2 configuring environment
Archives
- Today
- Total
BAN2ARU
[Python] for문에서 'int' object is not iterable 오류 본문
반응형
TypeError: 'int' object is not iterable
오류가 발생한 경우에는
for i in 변수 : --> for i in range(변수)
로 변경하면 오류가 해결된다.
오류가 발생한 이유는 변수가 'int' 즉 숫자형이여서 발생한 것인데,
for문은 list형에 있는 iterable 즉, 단계별로 수행할 수 있는 list의 형태가 필요하기 때문이다.
range(변수)로 하면 해당 변수가 0~변수 값까지의 list형식으로 변환되어 오류가 해결된당!
728x90
'Language > Python' 카테고리의 다른 글
CMD에서 'tensorboard'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. 오류 (0) | 2022.04.19 |
---|---|
[Python] Multiprocessing (0) | 2022.04.10 |
PIL.UnidentifiedImageError: cannot identify image file (0) | 2022.03.02 |
Please use tqdm.notebook.tqdm instead of tqdm.tqdm_notebook (0) | 2022.02.24 |
[Python] Using legacy 'setup.py install' for numpy, since package 'wheel' is not installed 오류 (0) | 2022.02.12 |
Comments