- 다른 뜻에 대해서는 PSP 문서를 참조하십시오.
1 개요[ | ]
- Python Server Pages; PSP
- 파이썬 서버 페이지
- .psp
2 예제 1: hello.psp[ | ]
aspx
Copy
<html><body>
<h2><%= 'Hello World' %></h2>
</html></body>
3 예제 2: hello2.psp[ | ]
aspx
Copy
<%
import time
weekday = time.strftime('%A', time.localtime(time.time()))
message = 'Hello World! This is a wonderful %s.' % weekday
%>
<html><body>
<h2><%= message %></h2>
</html></body>
4 같이 보기[ | ]
5 참고[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.