Skip to content
Snippets Groups Projects
Select Git revision
  • 3fb758783268be126ff43db7c28f892c0a392f80
  • master default
2 results

CLCBooksSQL.sql

Blame
  • Forked from Dr.Pirmann / CI101Week56Lab
    Source project has a limited visibility.
    counting.py 484 B
    
    
    def countUp(low, high, step=1):
        while low <= high:
            print(low)
            low += step
            
    def countDown(high, low=1, step=1):
        ''' Good place to define step to be a non-negative int'''
        while high >= low:
            print(high)
            high -= step
        
        
    # countUp(1, 10)
    countUp(10, 100, 10)
    
    #countDown(50, 25, 5)
    #countDown(int(input("Count down from what: ")))
    
    myText = "I like the Drexel Dragon, whose name is Mario"
    myWords = myText.split()
    print(myWords)