How to call instance variable form another class and file
问题 I have a question, I have 4 file app.py , face.py , camera.py and db.py Inside face.py file I have one variable call known_encoding_faces . If I put print code inside my face.py and run the app.py the result will display in my command prompt. My question is how can i use known_encoding_faces variable in my camera.py? My expected result is when i run my app.py and open my webcam the command prompt will show the printed known_encoding_faces output. I believe if this work means this known