Hi everyone,
What can I do in pys60 instead of this C++ code?
C++ Code : var%256
![]()
Hi everyone,
What can I do in pys60 instead of this C++ code?
C++ Code : var%256
![]()
The mod operator (%) known from C/C++ exists in Python and uses the same syntax.
displaysCode:print 5%2
Code:1