Conditions | 8 |
Total Lines | 43 |
Code Lines | 40 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import sys |
||
11 | ClassCLAH.fn_command_line_argument_interpretation(ClassCLAH, sys.argv[1:]) |
||
12 | # marking the end of performance measuring (in nanoseconds) |
||
13 | performance_finish = time.perf_counter_ns() |
||
14 | # calculate time spent on execution |
||
15 | performance_timed = timedelta(microseconds = (performance_finish - performance_start) / 1000) |
||
16 | # display time spent on execution |
||
17 | print("This script has been executed in " + format(performance_timed) + ' seconds') |
||
18 |