Skip to content

decagondev/Hello_three

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Print Hello 3 Times

Print hello to the screen three times one "Hello" per line

  • thing1 Flow Chart

Pseudocode / Implement

def hello_three():
    # Set H to string literal "Hello"
    H = "Hello"
    # set a counter to zero
    counter = 0
    # set a limit to three
    limit = 3

    # itterate until counter is equal to limit
    while counter != limit:
        # display / print my H variable to the screen
        print(H)
        # increment our counter
        counter += 1

    # we are finished!

About

contrived example of problem solving

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published