答案 0 :(得分:4)
使用乳胶(或者更确切地说,matplotlib内置" mathtex")来绘制$\circlearrowleft$
。相反的方向是`$ \ circlearrowright $'。
作为一个简单的例子:
import matplotlib.pyplot as plt
import numpy as np
fig, ax = plt.subplots()
ax.scatter(*np.random.random((2, 5)), s=200, marker=r'$\circlearrowleft$')
ax.scatter(*np.random.random((2, 5)), s=200, marker=r'$\circlearrowright$')
plt.show()