Can I use this library in python

Can I use this library in python code. Like I want to implement encryption or any comparison function in python using this library as in this library it is already implemented.

Hi!
TFHE-rs is not available in Python. It is primarily designed to be called from rust, but we also have C and JS bindings. Depending on your use case, you may want to look at concrete/concrete-ml, which have a Python API.

If I implement a function using the C bindings of TFHE-rs, and then use a Python wrapper on top of the C code, will the code run successfully or not?

Yes, in theory it should work. But you should be very careful when converting data from Python to C/Rust and vice versa.