書名: Practical Data Wrangling作者名: Allan Visochek本章字數: 36字更新時間: 2021-07-02 15:16:09
Adding to a variable
To increase the value of a variable, you can use the += symbol as follows:
>> myVariable += 5.
>> print(myVariable)
The value of myVariable is now 5.