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
    
  
  
    
  | function timeTo(time){ | |
| var times = new Date(); | |
| var resultString; | |
| var millisec; | |
| millisec = (new Date(time)).getTime(); | |
| times.setTime(millisec); | |
| var month = times.getUTCMonth() + 1; | |
| if(month < 10){ | 
  
    
      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
    
  
  
    
  | num = [x*2 for x in range(0,11)] | |
| print num |