no = "c123"cursor.execute('select acount from admin where acount = :1 ',no)cx_Oracle.DatabaseError: ORA-01036: 非法的变量名/编号
no = "c"cursor.execute('select acount from admin where acount = :1 ',no)成功,为什么?