MMihut / webcrawler

Apache License 2.0
0 stars 1 forks source link

Documentation sur application web en python #7

Open MMihut opened 9 years ago

MMihut commented 9 years ago

Chercher sur Google un example d'applicaton web en python.

StefaniaF commented 9 years ago

http://www.tutorialspoint.com/python/python_basic_syntax.htm

StefaniaF commented 9 years ago

Un example d'applicaton en python. "Guess the Number" : import random

guesses_made = 0

name = raw_input('Hello! What is your name?\n')

number = random.randint(1, 20) print 'Well, {0}, I am thinking of a number between 1 and 20.'.format(name)

while guesses_made < 6:

guess = int(raw_input('Take a guess: '))

guesses_made += 1

if guess < number:
    print 'Your guess is too low.'

if guess > number:
    print 'Your guess is too high.'

if guess == number:
    break

if guess == number: print 'Good job, {0}! You guessed my number in {1} guesses!'.format(name, guesses_made) else: print 'Nope. The number I was thinking of was {0}'.format(number)