정수랑 문자열 같이 출력하기 print(degree + "도") TypeError: unsupported operand type(s) for +: 'float' and 'str' Radin을 Degree로 변환하여 출력하는 과정에 오류! 파이썬은 참 쉬우면서도 어렵다. 처음 배우니까 어려운게 당연한거겠지 degree 변수 nt값 + str을 같이 붙여서 출력하기 1. 콤마 사용하기 print(degree, "도") 2. format함수 사용하기 '{인덱스0}, {인덱스1}'.format(값0, 값1) print(('{0}도').format(degree)) 문자열에 정수넣기