All of the first steps have been tested and worked. However for the last step I am having issues, the result keeps printing the premium cost no matter what weight I chose.
I makes no sense att all, thank you for that reminder.
I think however the reason they were in “str()” was because all the ground & drone functions were set as string because I added a print statement with a string and I needed to concatenate the strings and the interger result.
Anyhow, thank you again.
the_number = 3
the_quote = "First shalt thou take out the Holy Pin. Then shalt thou count to %s, no more, no less. %s shall be the number thou shalt count, and the number of the counting shall be %s." % (the_number,the_number,the_number)
print(the_quote)
which prints:
First shalt thou take out the Holy Pin. Then shalt thou count to 3, no more, no less. 3 shall be the number thou shalt count, and the number of the counting shall be 3.
(Yes, I know I’m repeating myself… but three is the number, after all…)