J'aimerai faire matrix en python mais je n'y arrive pas.
Résolu/Fermé
Multi73
Messages postés
88
Date d'inscription
dimanche 13 septembre 2020
Statut
Membre
Dernière intervention
4 mai 2022
-
3 juin 2021 à 11:28
Multi73 Messages postés 88 Date d'inscription dimanche 13 septembre 2020 Statut Membre Dernière intervention 4 mai 2022 - 4 juin 2021 à 17:31
Multi73 Messages postés 88 Date d'inscription dimanche 13 septembre 2020 Statut Membre Dernière intervention 4 mai 2022 - 4 juin 2021 à 17:31
A voir également:
- J'aimerai faire matrix en python mais je n'y arrive pas.
- Citizen code python - Accueil - Outils
- Python retour à la ligne dans le code - Forum Python
- Ce programme est écrit en python ✓ - Forum Python
- Intel matrix storage manager - Télécharger - Pilotes & Matériel
2 réponses
jee pee
Messages postés
40441
Date d'inscription
mercredi 2 mai 2007
Statut
Modérateur
Dernière intervention
12 novembre 2024
9 422
Modifié le 3 juin 2021 à 12:35
Modifié le 3 juin 2021 à 12:35
Bonjour,
Tu devrais reprendre le cours Python au début ;-)
x=1 affectation
x==1 test égalité
puis un bloc (if,while, def ...) a une ligne titre qui se termine par : donc
puis pas besoin d'une variable x, on peut faire une boucle infinie :
%random% c'est une variable MSDOS/ligne de commande, dans Python ce sera :
ou un truc batard
mais alors autant faire du msdos, pas du python
Tu devrais reprendre le cours Python au début ;-)
x=1 affectation
x==1 test égalité
puis un bloc (if,while, def ...) a une ligne titre qui se termine par : donc
while x==1:
puis pas besoin d'une variable x, on peut faire une boucle infinie :
while True:
%random% c'est une variable MSDOS/ligne de commande, dans Python ce sera :
import os import random os.system("color a") while True: print(random.randint(0,9),random.randint(0,9),random.randint(0,9),random.randint(0,9),random.randint(0,9),random.randint(0,9))
ou un truc batard
import os import random os.system("color a") while True: os.system('echo %random% %random% %random% %random% %random% %random% %random% %random%')
mais alors autant faire du msdos, pas du python
Multi73
Messages postés
88
Date d'inscription
dimanche 13 septembre 2020
Statut
Membre
Dernière intervention
4 mai 2022
2
4 juin 2021 à 17:31
4 juin 2021 à 17:31
Ok merci beaucoup !