- Python HelloWorld Class
- 파이썬 HelloWorld 클래스
소스 코드
[root@zetawiki ~]# cat hello_world.py
#!/usr/bin/python
class HelloWorld:
def f(self):
print "Hello, world!"
hw = HelloWorld()
hw.f()
실행 결과
[root@zetawiki~]# python hello_world.py
Hello, world!
[root@zetawiki ~]# cat hello_world.py
#!/usr/bin/python
class HelloWorld:
def f(self):
print "Hello, world!"
hw = HelloWorld()
hw.f()
[root@zetawiki~]# python hello_world.py
Hello, world!