Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Simple Python
SUBMITTED BY:
Guest
DATE:
April 20, 2013, 7:48 a.m.
FORMAT:
Python
SIZE:
403 Bytes
Raw
Download
Tweet
HITS:
1201
Go to comments
Report
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# ---------------------
# Title: Hello World
# Version: 1.0.0
# Usage: python helloworld.py
# ---------------------
import
sys
,
time
def
main
(
name
=
'World'
):
sys
.
stdout
.
write
(
'Hello
%s
!n'
%
name
)
time
.
sleep
(
1
)
sys
.
stdout
.
write
(
'Thanks for the click!'
)
if
__name__
==
'__main__'
:
main
()
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus