Assume that plist has been defined and is associated with a
Assume that plist has been defined and is associated with a non-empty list. Write a statement that increases the first element of this list by 10. just requires a single line of code. PYTHON please!
Solution
Answer:
Below is the statment that will increase the first element of the list by 10.
plist[0] = plist[0] + 10
