Created
November 24, 2016 15:04
-
-
Save yuanmai/51d50ddff9d2d3c0ac2450280ef2b08d to your computer and use it in GitHub Desktop.
HOW TO FALL ASLEEP and RELAX IN 60 SECONDS - THE 4-7-8 BREATHING TECHNIQUE EXPLAINED
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import time | |
# for more info https://www.youtube.com/watch?v=oiV6sbuQUNc | |
def round(): | |
for i in "Inhale 2 3 4 Hold 2 3 4 5 6 7 Exhale 2 3 4 5 6 7 8".split(" "): | |
print i | |
time.sleep(1) | |
for i in range(4): | |
round() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment