使用startswith函数啊>>> a="$a+$b-($c/$d) = $abc">>> a.startwith("$")>>> a.startswith("$")True
根据一般变量的命名规则写了下面的程序import reexpression="$a+$b-($c/$d) = $abc"matchs=re.findall(r"(?<=\$)[a-z0-9]\w*",expression,re.I)print matchs结果是包括所有变量名字符串的列表