Prblm de chargement pour un programme python
Résolu/Fermé
brute epaisse
-
6 nov. 2009 à 17:50
gigaga Messages postés 2346 Date d'inscription vendredi 20 juin 2008 Statut Membre Dernière intervention 22 août 2014 - 17 nov. 2009 à 12:50
gigaga Messages postés 2346 Date d'inscription vendredi 20 juin 2008 Statut Membre Dernière intervention 22 août 2014 - 17 nov. 2009 à 12:50
A voir également:
- Prblm de chargement pour un programme python
- Programme demarrage windows 10 - Guide
- Citizen code python avis - Accueil - Outils
- Desinstaller un programme - Guide
- Programme (x86) ✓ - Forum Windows
3 réponses
gigaga
Messages postés
2346
Date d'inscription
vendredi 20 juin 2008
Statut
Membre
Dernière intervention
22 août 2014
301
6 nov. 2009 à 17:56
6 nov. 2009 à 17:56
Chez moi ça marche...
$ cat test.py
import random
nombre = random.randint(0, 100)
print nombre
$ python test.py
62
$ cat test.py
import random
nombre = random.randint(0, 100)
print nombre
$ python test.py
62
gigaga
Messages postés
2346
Date d'inscription
vendredi 20 juin 2008
Statut
Membre
Dernière intervention
22 août 2014
301
6 nov. 2009 à 18:59
6 nov. 2009 à 18:59
Et avec ça ?
print "devine le nbre aukel pense l'ordi(nombre compris entre 0 et 100 :" import random nombre = random.randint(0, 100) a=input("Entrez le nombre :") while a != nombre : if a < nombre : print"trop petit" if a > nombre : print"trop grand" a=input("réessaye : ") print"bravo c'est gagné!!"
gigaga
Messages postés
2346
Date d'inscription
vendredi 20 juin 2008
Statut
Membre
Dernière intervention
22 août 2014
301
17 nov. 2009 à 12:50
17 nov. 2009 à 12:50
De rien!
6 nov. 2009 à 18:29
devine le nbre aukel pense l'ordi(nombre compris entre 0 et 100 :
Entrez le nombre :54
trop grand
réessaye : 30
>>> 15
15
devine le nbre aukel pense l'ordi(nombre compris entre 0 et 100 :
Entrez le nombre :-54
trop petit
réessaye ; 54
trop grand
réessaye : 32
trop grand
réessaye : 15
>>> 10
10
voila mon programme:
print "devine le nbre aukel pense l'ordi(nombre compris entre 0 et 100 :"
import random
nombre = random.randint(0, 100)
a=input("Entrez le nombre :")
while a < nombre :
print"trop petit"
a=input("réessaye ; ")
while a > nombre :
print"trop grand"
a=input("réessaye : ")
if a == nombre :
print"bravo c'est gagné!!"
je cprds ps le blem