2015. 2. 8. 16:28
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

#! -*- coding: utf-8 -*-

import time

name=raw_input("What is your name? ")

print "Hellop, "+name, "Time to play hangame!"
print "\n"

time.sleep(0.5)
word="secret"
guesses=''
turns=10

while turns>0:
  failed=0
  for char in word:
    if char in guesses:
      print char,

    else:
      print "-"
      failed+=1
  if failed==0:
    print "\nYou won"
    break

  print

  guess=raw_input("guess a character:")
  guesses+=guess

  if guess not in word:
    turns-=1
    print "Wrong\n"
    print "You have", + turns, 'more guesses'

    if turns ==0:
      print "You Loose\n"


'Python' 카테고리의 다른 글

scriptinfo.py / scriptinfoUsage.py  (0) 2015.02.08
IMDB.py  (0) 2015.02.08
curIP.py  (0) 2015.02.08
fahToCel.py  (0) 2015.02.08
celToFah.py  (0) 2015.02.08
Posted by af334