1.3. Dragon Sprint 1
Name: Dragon Sprint 1
Difficulty: easy
Lines: ?
Minutes: 13
1.3.1. Functional Requirements
Create dragon named "Wawelski"
Dragon has health points (random number from 50 to 100)
1.3.2. Non-Functional Requirements
Commit and push the current state of the repository
Modify the game code from the previous version of the task
Save the code to solve the task in the
dragon
directoryWhen finished, add all files from
dragon
to the repositoryCommit and push changes to a central repository (Github)
1.3.3. Hints
from random import randint
randint(a, b)
- random integer betweena
andb
(inclusive!)