This file contains hidden or 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
| echo "Select a browser " | |
| echo "1. Chrome" | |
| echo "2. Firefox" | |
| read browser | |
| echo "Which site you want to goto? " | |
| read name | |
| echo "Taking you to site $name" |
This file contains hidden or 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
| from __future__ import print_function, division | |
| import os | |
| job_list = [] | |
| id = 0 | |
| def calc_wt(): | |
| temp = [] | |
| for x in job_list: | |
| sum = 0 |
NewerOlder