Draw a flowchart and then use python to implement following
Draw a flowchart and then use python to implement following description. Prompt float value for kilometer. Convert kilometers to miles and then print out the value of miles.
Solution
kilometer = float(input(\"Enter the kilometer: \"))
miles = 0.62137 * kilometer
print(\"Miles: \"+str(miles))
Output:
sh-4.3$ python3 main.py
Enter the kilometer: 100
Miles: 62.137
sh-4.3$ python3 main.py
Enter the kilometer: 85.5
Miles: 53.127134999999996
