Skip to content
Snippets Groups Projects
Select Git revision
  • 4e92482a3c3aa1927e8c3bf9443511723950aab8
  • main default protected
  • potentialRestart
  • EneryBooster
  • Coordinates_And_Body_size
  • 9-spectator
  • 8-deadplayers
  • 7-camera
  • 6-rooms
  • test-of-collision&growing
  • 5-rooms
  • 0-setup-initial-server
  • 3-initial-game-code
13 results

gameClient.js

Blame
  • 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)