-2
# Write Python code that stores the distance 
# in meters that light travels in one 
# nanosecond in the variable, nanodistance. 

# These variables are defined for you:

    speed_of_light = 299800000. # meters per second
    nano_per_sec = 1000000000. # 1 billion

# After your code,running
# print nanodistance
# should output 0.2998

# Note that nanodistance must be a decimal number.

# ASSIGN nanodistance BELOW this line
------------------------------------------

    speed_of_light/nano_per_sec = nanodistance

    print nanodistance

'正しくない。コードの実行中にエラーが発生しました。同じ行のコードの前にスペースがないことを確認してください。

なぜこれが機能しないのですか?

私はそれをすることができると思います、print nanodistance = 0.2998

4

1 に答える 1