How would you format this is Python.
print("Rating", "\t", "Number of Processors")
print("*",processor_count1)
print("**", processor_count2)
print("***", processor_count3)
The result when you run it is this:
Rating Number of Processors
* 1
** 3
*** 1
As you can see the numbers are not lined up with the title. The duplicate answer does not help at at all