"Python HelloWorld Class"의 두 판 사이의 차이

20번째 줄: 20번째 줄:
==같이 보기==
==같이 보기==
*[[Python hello world]]
*[[Python hello world]]
==참고 자료==
*https://docs.python.org/2/tutorial/classes.html


[[분류: Python]]
[[분류: Python]]

2014년 5월 16일 (금) 16:15 판

Python HelloWorld Class

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 }}