Notice
Recent Posts
Recent Comments
목록string-number concatenation (1)
준호씨의 블로그
There is a number. >>> num = 2.3 What if you want to use with string? (String-Number concatenation) You should convert number to string. There are several ways. str function >>> str(num) '2.3' repr function >>> repr(num)..
개발이야기
2017.05.11 00:01