fork download
  1. def double_last_value(L):
  2. '''(list of int) -> NoneType
  3.  
  4. Double the value at L[-1]. For example, if L[-1] is 3,
  5. replace it with 6.
  6.  
  7. Precondition: len(L) >= 1.
  8. '''
  9. L1 = [1, 3, 5]
  10. double_last_value(L1)
  11. print(L1[-1])
Success #stdin #stdout 0.09s 14120KB
stdin
Standard input is empty
stdout
5