Filters

Other

D

Your name is required for this document. It is only stored on this local computer and no where else. Please enter your name below:

S3 ComputingFixed Loops Worksheet

DGS badge
S3 ComputingFixed Loops Worksheet

To help you further your skills with Python this worksheet has some difficult challenges. Give them your best shot and ask for help if you need it.

  • 1

    Write a program that prints numbers from 100 to 1000.

  • 2

    Write a program that asks the user for a number, then displays the times table (up to 10 times) for the number they have given by adding the number to a total. E.g. if they type 7 it will display:

    7
    14
    21
    28
    35
    42
    49
    56
    63
    70
        

    The code will contain something like this total = total + number.

  • 3

    Write the previous program in another way by simply changing the range function in the loop.

  • 4

    Write a program that displays all even number from 0 to 100. To figure out if a number is even use if number % 2 == 0:.

  • 5

    The Fibonacci numbers are a sequence of numbers where each successive number is the previous number plus the one before that.

    It starts on the two numbers, 0 and 1:

    1 (0 + 1)
    2 (1 + 1)
    3 (2 + 1)
    5 (3 + 2)
    8 (5 + 3)
    13 (8 + 5)
    

    You will have three variables, x and y and a temp variable.

    temp = x
    x = y
    y = temp + y
    

    You can ask the teacher or look this up if you want a more concrete explanation of this.

    a. Write a program that will generate the sequence of numbers above. To do this, you will need:

    • i. Two variables: x and y.
    • ii. A loop that will loops 10 times
    • iii. A temporary variable to store num1 within the loop (e.g. temp = x)
    • iv. A method of displaying each number to the screen

    b. Write a program that will display the 50th Fibonacci number only.

  • 1

    Write a program that prints all numbers from 1 to 100 that are divisible by 3 and 5.

  • 2

    Write a program that asks the user for a number, then counts down from that number to 0.

  • 3

    Write a program that adds up all numbers from 1 to a number the user types in.

  • 4

    Write a program that displays the square of every number from 1 to 20.

  • 5

    Write a program that displays a simple 'bar chart' using stars.:

    If the user enters 5, show:
    *****
    If the user enters 3, show:
    ***

    Ask the user how many times they want this to display, e.g. if they say 3 and they want 4 stars it should look like this:

    ****
    ****
    ****
    

Challenge tasks

These tasks are much harder and you may need to look up things to help you with this.

  • 1

    Write a program that asks the user for a word and displays it backwards.

  • 2

    Write a program that asks the user for 5 numbers and displays the largest one. (You will need a variable that stores the current largest number seen so far.)

  • 3

    Display all prime numbers between 1 and 100.

Provide Feedback

What did you think of this document?

!
-- DragonDocs version 0.9 --

20.08.2017

Started on DragonDocs
Created a YASS/PHP and HTML-based system for saving and retrieving data

21.08.2017
Added CSS styles to page
Added JavaScript code to the page

02.02.2018
Added the multipage option (used in my dissertation)
Added the XMLHttpRequest-based multipage requests

08.02.2018
Added the Accessibility features
Filters added

10.02.2018
Purple filter added

17.03.2018
Added the Note class
Added the Did You Know class

-- DragonDocs version 1.0 (Yosemite) --

02.10.2019
First trial of DragonDocs in teaching

04.10.2019
Added the Task, Starter, Review your learning sections

07.10.2019
Added the feedback feature
Added the Dark Mode toggle

19.09.2020
Performance gains through the removal of unnecessary code
Added the Learning Intentions and Success Criteria features
Added the school badge

31.09.2021
Changed the headings (h2) to be more consistent with my website
Added sections to the pages - sections must be preceded by a h2
Added the "I have read this section" buttons
Changed the main heading zone to gradient text like my website
Added the table of contents feature

02.02.2022
Added the Print feature
Updated the footer to feature a new gradient
Added the Test It! class
Added the green flag
Automated the table of contents using JavaScript

06.02.2022
Added the 'includes' feature to the document, allowing inclusion of other files easily
Removed the requirement that the IP address must be one of the schools I have taught at, opening these documents to the public

02.03.2022
Once a section has been read or completed, the user can now hide that section

10.10.2022
Added the Extension task class
Changed the scrollbar on Windows to match that of macOS

-- DragonDocs version 2.0 (Kilimanjaro) --

07.08.2023
Added the Save button and the ability to save 'results' or answers to a Word document

12.01.2024
Added the large numbers class
Removed the background of the page navigation

-- DragonDocs version 2.1 (Aurora) --

08.02.2024
Added the active class to active links in the bottom section

09.02.2024
Added the image upload feature

10.02.2024
Added a fix that prevents the upload of non-image files into an image upload
Added pasting images to the upload feature

11.02.2024
Added the ability to view the changelog from a document
Improved the feedback system by recording the DragonDocs User ID and the Document ID data
The feedback from DragonDocs can be accessed much easier

12.02.2024
Added the new step_by_step_mode feature, allowing sections to be viewed individually
Added the ability to lock and unlock DragonDocs

22.02.2024
Added new checkboxes to each list item in a .task or .step
Added functionality to said checkboxes to add a strikeout to steps completed

23.02.2024
Added the new 'step' class
Steps are now auto incremented in CSS so the name displays the step number
Activities are now also auto incremented to display the activity number

25.02.2024
Added the 'matcher' feature to DragonDocs
Fixed an issue in which a closed section would retain it's original height within the document navigation
Added starters and the lesson review to the navigation on the side
The learning intentions and success criteria in teaching documents have now been redesigned to match my slides design

26.02.2024
All buttons are now on the right hand side
The accessibility button now has WAI under it

-- DragonDocs version 2.2 (Serengeti) --

26.02.2024
Code has been rewritten from the ground up to be object-oriented, making additional features easier to add

28.08.2024
Changed the look of grouped multiple choice buttons

06.03.2024
Added the new dragondocs_name feature and the requires_name property which allows names to be prepended to saved documents

09.03.2024
Added code so when the user types in their name and hits the enter key it will save that data and close the modal window
Added the new DragonShow and DragonDocs Link - a connection between both services that allows the presenter to communicate with users of DragonDocs from a DragonShow
Added the new timer option which is sent from DragonShows

04.04.2024
The matcher feature is no longer embed from jamiebalfour.scot but actually a feature of DragonDocs
Made DragonDocs 100% object-oriented, meaning much better management and better performance

05.04.2024
Made subtle changes to the interface to tidy it up a bit

06.04.2024
The multiple choice questions are now also part of the object oriented interface

09.04.2024
As requested, h3 elements are now included in the 'floating navigation'
The active navigation element now becomes bold and the left border has been retired

05.06.2024
Saving files now exports as a PDF which now also embeds all fonts (removed now)

18.06.2024
Select dropdowns are now temporarily saved to local storage and are now recovered when the document is reopened

19.12.2024
Multipage navigation now switches pages seamlessly - it's beautiful

17.01.2025
Added support for multi-select storage and reloading

-- DragonDocs version 2.3 (Great Barrier) --

17.02.2025
Added support for reorder tasks
Added lines and attachment circles for matching tasks

19.02.2025
Improved the performance of API calls
Separated the API from the core HTTP code

20.02.2025
Colours can be applied to matcher elements
Matcher colours now match the colours of the elements

Time left

: