stage.set_background("underwater")
score = 0
score_board = codesters.Display(score)
weak_pws = ["password", "password123", "hello1", "snuffles", "123456"]
strong_pws = ["GgbvTa581!@", "@Mjrc0olguy!", "007jmSB0nd!", "108turt!es762", "Avv3SoMe!305"]
all_pws = weak_pws + strong_pws
# text = codesters.Text("text", x, y, "color")
password = codesters.Text("password", 100, 200, "red")
def interval():
# add any other actions...
rand_x = random.randint(-225, 225)
rand_y = random.randint(-225, 225)
rand_pw = random.choice(all_pws)
stage.event_interval(interval, 2)
t = codesters.Teacher()
try:
tval1_line = t.find_function('set_text')[0][0]
tval1 = t.get_indent_at_line(tval1_line)
tval2 = t.find_function('set_text')[0][1]
except:
tval1 = "DNE"
tval1_line = "DNE"
tval2 = "DNE"
t1 = TestObjective()
t1.add_success('password.set_text(rand_pw)' in tval2 and tval1 == 4, "Great job!")
t1.add_failure(tval1 == "DNE", "Did you add a Set Text command?")
t1.add_failure('(password)' in tval2, "Oops! Make sure password is the name in front of your Set Text command!")
t1.add_failure('password.' not in tval2, "Did you change the name in front of the Set Text command to password?")
t1.add_failure('(rand_pw)' not in tval2, "Make sure rand_pw is the variable in parentheses inside your Set Text command!")
t1.add_failure(tval1 < 4, "Make sure your Set Text command is indented 4 spaces inside your Interval Event.")
tester = TestManager()
tester.add_test_list([t1])
tester.run_tests()
tester.display_first_feedback()
-
Run Code
-
Activity Submitted!
Enviar Trabajo
-
Actividad Siguiente
-
Stop Running Code
-
Show Chart
-
Show Console
-
Reset Code Editor
-
Codesters How To (opens in a new tab)