- Practical Data Wrangling
- Allan Visochek
- 32字
- 2021-07-02 15:16:10
Division
To divide a variable by a value, you can use the /= symbol as follows:
>> myVariable /= 3.
>> print(myVariable)
The value of myVariable is now 6.
To divide a variable by a value, you can use the /= symbol as follows:
>> myVariable /= 3.
>> print(myVariable)
The value of myVariable is now 6.