(Solved): Hi, How are you? Could you help me answer these question? Thank you
In Pytho ...
Hi, How are you? Could you help me answer these question? Thank you
???????
In Python, variable names must all begin with an uppercase character # is the character used to start a comment var \( -=12 \) subtracts 12 from var, and assigns the result to var '180' + '0' evaluates to 180 expression: \( u \) is \( v \) returns True if \( u \) and \( v \) point to the same object
If my_list \( =[10,20,30,40,50] \), which of the following statements has the effect, possibly amongst others, of setting the value of the list's 3rd element to 40 ? my_list[2] += my_list[0] \[ \text { my_list[2] = } 40 \] del(my_list[0]) \[ \text { my_list[3] = } 40 \] \[ \text { my_list[2] += } 10 \]