[Python] Print 변수 출력하기
2014. 2. 19. 08:56ㆍ2018년 이전 관심사/개발관련
반응형
Print 변수 출력하기
문자열 변수와 int 변수를 출력하는 예제
문자열 변수와 int 변수를 출력하는 예제
test_int = 80
test_string = "ABCDEFG"
printf "test_int : %d" % (test_int)
printf "\r\n"
printf "test_string : %s" % (test_string)
결과
test_int : 80
test_string : ABCDEFG
반응형
'2018년 이전 관심사 > 개발관련' 카테고리의 다른 글
[Arduino] Temperature Monitoring System using Xively Server & WizFi250 (8) | 2014.03.19 |
---|---|
[Arduino]WiFi Shield & Motor Driver 제어 (4) | 2014.03.17 |
[Arduino Uno WiFi Shield]WizFi250과 Xively를 이용하여 온도 센서 모니터링 하기 (2/2) (0) | 2014.02.18 |
[Arduino Uno] WizFi250과 Xively를 이용하여 온도 센서 모니터링 하기 (1/2) (0) | 2014.02.18 |
[C언어]문자열에서 특정 문자열 추출 하기 (0) | 2014.01.01 |