# Assign list "time" with the following time values.
time = [15, 27, 32, 36.5, 38.5, 40.5, 41.5, 42, 43.5, 45.5, 47.5, 52.5]
# Remove 1st value(0) from the list
time[0] = []
# Show time
time
[[], 27, 32, 36.5, 38.5, 40.5, 41.5, 42, 43.5, 45.5, 47.5, 52.5]
# Print time
print(time)
[[], 27, 32, 36.5, 38.5, 40.5, 41.5, 42, 43.5, 45.5, 47.5, 52.5]
私はちょうどチュートリアルでは、これまでのところを教えてくれたものを、次のよ:
http://docs.python.org/py3k/tutorial/introduction.html#listsPython - 完全にリストから整数をクリアするには?
それはあまりにも動作します、それを考えなかった。 – Josh