Hello.py

DH 교육용 위키
Tutor (토론 | 기여) 사용자의 2020년 5월 21일 (목) 17:48 판

(비교) ← 이전 판 | 최신판 (비교) | 다음 판 → (비교)
이동: 둘러보기, 검색
#!/usr/bin/python
#-*- coding: utf-8 -*-

import cgi
import cgitb

html = """
<html>
<head>
<title>Hello Word - First CGI Program</title>
</head>
<body>
<h2>Hello Word! This is my first py CGI program</h2>
</body>
</html>"""

print "Content-type:text/html\n\n"
print html


Result