Jump to content

Main public logs

Combined display of all available logs of Slow Like Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 15:45, 3 April 2024 Rob talk contribs created page Loops (Created page with "== while Loops == <syntaxhighlight lang="python" line> my_number = 1 while my_number <= 10: print(my_number) my_number += 1 </syntaxhighlight> <syntaxhighlight lang="python" line> prompt = "Enter any message to share. prompt+= "\nPress q to quit" entry = "" while entry != 'q': entry = input(prompt) print("You quit the program") </syntaxhighlight> <syntaxhighlight lang="python" line> </syntaxhighlight> <syntaxhighlight lang="python" line> </syntaxhighli...")