(Create a symlink pytest for py.test)
pytest [options] [file_or_dir] [file_or_dir] ...
Help:
| //@version=5 | |
| // | |
| // changelog | |
| // 2021-12-31 - updated to version 5 | |
| // | |
| // https://gist.github.com/sherwind/d97383c153b3c554f592a1a377c29fa7 | |
| // Pivot Points High Low Extension | |
| // | |
| // | |
| // See Also: |
| # https://www.facebook.com/groups/pythoncodingprogrammingselfinstructionhub/permalink/1622891821193145/ | |
| def question_name(): | |
| return input("What is your name? ") | |
| def question_age(): | |
| while True: | |
| age_string=input("How old are you buddy? ") | |
| try: | |
| age_integer = int(age_string) |
| # https://www.facebook.com/groups/python.developers.py/permalink/3111769322201598/ | |
| def buried_treasure_location(degrees,minutes, seconds): | |
| return f"{degrees}°{minutes}'{seconds}\"" | |
| print(buried_treasure_location(36,43,25)) |