[GO] Introduction à Python pour, pendant

Pour déclaration


for seireki in range(1989, 2017):
    print("UN D" + str(seireki) + "Année", end="")
    heisei = seireki - 1988
    print("Heisei" + str(heisei) + "C'est l'année.")
<production>
C'est 1991 en 1989.
Nous sommes en 1990, 1990.
Nous sommes en 1991, 1991.
Nous sommes en 1992 et 1992.
....

Ajouter tous les éléments du tableau et afficher la valeur totale


nums = [1, 3, 5, 6, 3, 2, 5, 23, 2]
# print(nums)
sum = 0
for i in nums:
    # print(i)
    sum += (i)
    # print(sum)
print(sum)
>>50

Déclaration While


import random
hp = 20
while hp > 0:
    hit = random.randint(1, 10)
    print("Slime" + str(hit) + "Endommagé!")
    hp -= hit
    print("Les HP restants" + str(hp) + "est!")
print("Slime vaincu")
<Valeur de sortie>
Infligé 1 dégât au slime!
Le HP restant est de 19!
9 dégâts infligés au slime!
Le HP restant est de 10!
Infligé 5 dégâts sur la vase!
Le HP restant est de 5!
Infligé 3 dégâts sur la vase!
Le HP restant est de 2!
Infligé 2 dégâts sur la vase!
Le HP restant est de 0!
Slime vaincu

Recommended Posts

Introduction à Python pour, pendant
Premiers pas avec Python pour les non-ingénieurs
Introduction à OpenCV (python) - (2)
Une introduction à Python pour l'apprentissage automatique
Une introduction à Python pour les programmeurs en langage C
[Introduction à l'application Udemy Python3 +] 43. instruction for else
Introduction à la programmation (Python) TA Tendency pour les débutants
Comprendre le développement de Python pour Pepper. -Introduction à Python Box-
Introduction à Python Django (2) Win
Introduction à la communication série [Python]
Introduction à Python (version Python APG4b)
Une introduction à la programmation Python
~ Conseils pour les débutants de Python présentés avec amour par Pythonista ③ ~
[Python] Traitement itératif (for, while)
[Introduction à Python] Comment utiliser l'instruction while (traitement répétitif)
[Introduction à python] Introduction rapide à Python pour les programmeurs C ++ occupés
[Introduction à Python] Comment écrire des instructions répétitives à l'aide d'instructions for
[Présentation de l'application Udemy Python3 +] 58. Lambda
[Présentation de l'application Udemy Python3 +] 31. Commentaire
Introduction à la bibliothèque de calcul numérique Python NumPy
Une introduction à Mercurial pour les non-ingénieurs
Entraine toi! !! Introduction au type Python (conseils de type)
[Introduction à Python3 Jour 1] Programmation et Python
[Introduction à Python] <numpy ndarray> [modifier le 22/02/2020]
[Présentation de l'application Udemy Python3 +] 57. Décorateur
Introduction à Python Hands On Partie 1
[Introduction à Python3 Jour 13] Chapitre 7 Chaînes de caractères (7.1-7.1.1.1)
[Introduction à Python] Comment analyser JSON
[Présentation de l'application Udemy Python3 +] 56. Clôture
[Introduction à Python3 Jour 14] Chapitre 7 Chaînes de caractères (7.1.1.1 à 7.1.1.4)
Introduction à Protobuf-c (langage C ⇔ Python)
[Présentation de l'application Udemy Python3 +] 59. Générateur
[Introduction à Python3 Jour 15] Chapitre 7 Chaînes de caractères (7.1.2-7.1.2.2)
[Introduction à Python] Utilisons les pandas
[Introduction à Python] Utilisons les pandas
[Introduction à l'application Udemy Python3 +] Résumé
Python facile à apprendre en écrivant
Introduction à l'analyse d'image opencv python
[Introduction à Python] Utilisons les pandas
Enregistrement de l'introduction de Python pour les nouveaux arrivants
Introduction à Python Django (2) Édition Mac
[AWS SAM] Présentation de la version Python
[Introduction à Python3 Day 21] Chapitre 10 Système (10.1 à 10.5)
[Tutoriel Python] Une introduction facile à Python
[Introduction à l'application Udemy Python3 +] 42. pour instruction, instruction break et instruction continue
[Introduction à l'application Udemy Python3 +] 39. instruction while, instruction continue et instruction break
Introduction à Python pour les utilisateurs de VBA - Appeler Python depuis Excel avec xlwings -
[Python] Introduction à la création de graphiques à l'aide de données de virus corona [Pour les débutants]
30/10/2016 else pour Python3> pour:
Introduction à Scrapy (1)
[Introduction à Udemy Python3 + Application] 18. Méthode List
[Introduction à Udemy Python3 + Application] 63. Notation d'inclusion du générateur
python [pour moi]
Introduction à Scrapy (3)
Mis à jour vers Python 2.7.9
[Introduction à Python] Comment utiliser la classe en Python?
Premiers pas avec Supervisor
Introduction à Tkinter 1: Introduction
[Introduction à Udemy Python3 + Application] 25. Méthode de type dictionnaire
[Introduction à l'application Udemy Python3 +] 33. instruction if