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

잔글 (봇: 자동으로 텍스트 교체 (-<source lang='cli'> +<source lang='console'>))
잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
23번째 줄: 23번째 줄:
*[[클래스]]
*[[클래스]]


==참고 자료==
==참고==
*https://docs.python.org/2/tutorial/classes.html
*https://docs.python.org/2/tutorial/classes.html


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

2017년 6월 27일 (화) 13:15 판

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