본문 바로가기

Thinking/Study

python 출력 테스트

728x90

python 함수 테스트


- IP 주소 파싱 테스트

def format_address(address):

    host, port = address.split(':')

    return '%s:%s' % (host or '127.0.0.1', port)


print format_address('1.2.3.4:12345')


- 화면 출력

$ python a.py

1.2.3.4:12345



'Thinking > Study' 카테고리의 다른 글

Apache ZooKeeper  (0) 2017.03.22
패턴 정리  (0) 2015.08.24
Professional C# 5.0 and .NET 4.5.1  (0) 2015.05.14
The C# Programming Language, 4th Edtion  (0) 2015.05.01
요새 읽고 있는 iOS 개발 관련 책들 정리  (0) 2014.12.29