There are 2 dictionaries created: delack_node0 and delack_node1. FOR NODE0 and NODE1
Their values are:
defaultdict(None, {'FC': 0.0, 'NL': 0.0, 'SSD': 11805529.0})
defaultdict(None, {'FC': 0.0, 'NL': 0.0, 'SSD': 13052326.0})
I would like the dictionary values to be printed in the below format, with values shown below FC NL SSD
___Average DelAcks for 5 Iterations___
Node FC NL SSD
0
1
I used print to try to achieve the above format:
print("___Average DelAcks for", no_of_iterations," Iterations___" )
print("\tNode\t\t\t\tFC\t\t\tNL\t\t\tSSD")