Step 1. Bind a name sigil. Concept. string variable. Create apprentice name first. Use quotes because this value is text. Checkpoint. apprentice name exists and Python sees it as a string. Step 2. Charge the focus reserve. Concept. numeric variable. Create focus points next. Type the number with no quotes so Python can treat it as a number. Checkpoint. focus points exists and is an int or float. Step 3. Flip the activation flag. Concept. Boolean flag. Create trial active with True or False....
Full Transcript
Step 1. Bind a name sigil. Concept. string variable. Create apprentice name first. Use quotes because this value is text. Checkpoint. apprentice name exists and Python sees it as a string. Step 2. Charge the focus reserve. Concept. numeric variable. Create focus points next. Type the number with no quotes so Python can treat it as a number. Checkpoint. focus points exists and is an int or float. Step 3. Flip the activation flag. Concept. Boolean flag. Create trial active with True or False. Capitalize the first letter and do not use quotes. Checkpoint. trial active exists and is a Boolean value. Step 4. Send the first report. Concept. printed report. Build training report only after the values exist, then print it so the console shows the result. Checkpoint. print() sends a readable training report to the console. Do This In Order.
Step 1. Bind a name sigil. Concept. string variable. Create apprentice name first. Use quotes because this value is text. Checkpoint. apprentice name exists and Python sees it as a string. Step 2. Charge the focus reserve. Concept. numeric variable. Create focus points next. Type the number with no quotes so Python can treat it as a number. Checkpoint. focus points exists and is an int or float. Step 3. Flip the activation flag. Concept. Boolean flag. Create trial active with True or False....