Working on a program for class. I have the following code, however, even though the code works fine; I have a formatting issue.
This here is the correct output that I am trying to get
This is what I currently have; and is wrong
Below is the current code I have:
num_rods = input ( "Input rods: You input " )
num_rods = float ( num_rods )
print ("rods.")
What is the error here? and how can I make my code look like the example; thanks.