Python HelloWorld Class

Jmnote bot (토론 | 기여)님의 2015년 2월 12일 (목) 01:14 판 (로봇: 자동으로 텍스트 교체 (-[root@jmnote +[root@zetawiki))
Python HelloWorld Class
파이썬 HelloWorld 클래스

1 소스 코드

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

2 실행 결과

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

3 같이 보기

4 참고 자료

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