Python HelloWorld Class

Jmnote bot (토론 | 기여)님의 2015년 2월 6일 (금) 02:56 판 (로봇: 자동으로 텍스트 교체 (-<source lang='dos'> +<source lang='cli'>))
Python HelloWorld Class
파이썬 HelloWorld 클래스

1 소스 코드

[root@jmnote ~]# cat hello_world.py 
#!/usr/bin/python
class HelloWorld:
	def f(self):
		print "Hello, world!"
hw = HelloWorld()
hw.f()

2 실행 결과

[root@jmnote~]# python hello_world.py
Hello, world!

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}