Help for this page

Select Code to Download


  1. or download this
    llil start
    get_properties : 44 secs
    sort + output  : 429 secs
    total          : 473 secs
    
  2. or download this
    start
    get properties: 60 secs
    sort + output: 63 secs
    total: 123 secs
    
  3. or download this
    # Manually rounded off after posting.
    collect time : 37.6 s
    ...
    total processing time : 152.7 s
    output time : 22.0 s
    total time : 174.7 s
    
  4. or download this
    #!/usr/local/bin/python3.10
    
    ...
    for label, time_taken in time_stat.items():
       sys.stderr.write( f'{label:{label_width}}: {time_taken:{time_width}
    +{round_format}} s\n' )
    
  5. or download this
    @@ -98,20 +98,20 @@
        """
    ...
    -   sys.stderr.write( f'{label} : {time_taken:0.1f}\n' )
    +   sys.stderr.write( f'{label:{label_width}}: {time_taken:{time_width
    +}{round_format}} s\n' )