Advertisement
clockworkpc

Swing Dancing Flowchart (FAILED)

Apr 29th, 2011
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. #!/bin/usr/python
  2. #footwork_02.py
  3.  
  4. bpm = raw_input("How fast is the music?")
  5.  
  6. if bpm > 300:
  7.     print "Balboa"
  8. if bpm < 300 and if bpm > 180:
  9.     print "Charleston"
  10.     print "6 Beat"
  11. if bpm <= 180 and if bpm >= 120:
  12.     print "Lindy!"
  13. if bpm < 120 and if bpm > 80:
  14.     print "Blues"
  15. if bpm < 80:
  16.     print "Get a room"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement