TroubleShooting

TypeError: can only concatenate str (not "list") to str 해결방법

JackSmith 2023. 1. 20.

아래와 같이 코드를 짰을때,

아래와 같이 print() 를 잘못구현했다고 뜨네요;;

여기서 핵심은 맨 마지막 줄입니다.

 

TypeError: can only concatenate str (not "list") to str
타입에러: 오직  str("리스트"가 아니라)만 str에 연결할 수 있어요(str끼리만 연결가능해요)

print()는 string 형태끼리만 '+'라는 기호로 연결(concatenate)이 가능합니다.

그  이외의 형태조합끼리는 ','(comma)를 붙여서 연결을 해야 합니다! (Don't forget it !!)

아래 예시를 보면 이해가 쉬울 것 같습니다!

 

댓글