4 lines
82 B
Python
4 lines
82 B
Python
print ("Miles\tKilometers")
|
|
for i in range(1,11):
|
|
print(i,"\t",(i*1.609))
|
|
|