View on GitHub

Orientation-Assignment

A simple assignment to familiarize students with GitHub assignments.

GitHub Orientation Assignment

Objectives

Important Note

All coding must be done inside of the repl.it IDE that is created when you click the work in repl.it button above.

Directions

  1. Design a program that:
    • Includes a comment indicating this is the GitHub Orientation Assignment.
    • Displays your full name to the console.
    • Calculates and displays the number of items in eight dozen
    • Calculates and displays the number of weeks in 180 days, as a whole number (truncated)
  2. Test your program by running it and examining the output. Fix any errors that occur. Your output should match the example below exactly, with the exception of your name:

     Jane Doe
     96
     25
    

GitHub Submission

This video will walk you through the GitHub submission process step-by-step.

Python Reference

This website can be used as a quick Python reference as you complete these GitHub programming assignments.

Replit Run Button

Occasionally, the Repl.it run button will not work. If this happens to you, manually run your file by typing python3 src/exercise.py at the prompt in the console: