Objective 4. Type awareness. Use type() or isinstance() while inspecting your values. Optional. Objective 5. Report to the console. Use print() to output a short training report. Required. Starter code. # Trial 001: Data Sigils # You are learning the Python pattern: variable name = value # 1) Make apprentice name a string/text value in quotes. # 2) Make focus points a number with no quotes. # 3) Make trial active a Boolean: True or False. # 4) Make training report with an f string, then print...
Full Transcript
Objective 4. Type awareness. Use type() or isinstance() while inspecting your values. Optional. Objective 5. Report to the console. Use print() to output a short training report. Required. Starter code. # Trial 001: Data Sigils # You are learning the Python pattern: variable name = value # 1) Make apprentice name a string/text value in quotes. # 2) Make focus points a number with no quotes. # 3) Make trial active a Boolean: True or False. # 4) Make training report with an f string, then print it.
Objective 4. Type awareness. Use type() or isinstance() while inspecting your values. Optional. Objective 5. Report to the console. Use print() to output a short training report. Required. Starter code. # Trial 001: Data Sigils # You are learning the Python pattern: variable name = value # 1) Make apprentice name a string/text value in quotes. # 2) Make focus points a number with no quotes. # 3) Make trial active a Boolean: True or False. # 4) Make training report with an f string, then print...