본문 바로가기
파이썬

파이썬에서 고정 문자열과 변수를 연결하는 방법

by º기록 2021. 1. 7.
반응형

제목에 파일 이름 'main.txt'를 포함하고 싶습니다. 명령 줄에서 파일 이름을 전달하고 있습니다. 그러나 그렇게하는 데 오류가 발생합니다.

python sample.py main.txt #running python with argument 

msg['Subject'] = "Auto Hella Restart Report "sys.argv[1]  #line where i am using that passed argument

 

해결 방법

 

나는 당신이 이것을 의도했다고 생각합니다.

msg['Subject'] = "Auto Hella Restart Report " + sys.argv[1]
# To concatenate strings in python, use       ^ 

 

참조 페이지 https://stackoverflow.com/questions/18348717

 

 

반응형

댓글