Search code examples
pythonlogicpseudocodemathematical-expressions

Mathematical expressions in pseudo code


I have pseudo code am trying to implement in python but I cant seem to remember what p ← 0 would mean in logic or calculus.


Solution

  • It usually means store the value 0 on the variable p

    In python it would be p = 0