I was researching some information on the topic of trial division, and I came across this symbol in Python:
//=
I got this from here where
// is integer division and the
//
n //= p
syntax is short for
n = n // p
except the value n is modified directly if it supports this.