I'm a beginner in python and I wanted to know how I call attributes of another object in another class, because in Java, for example:
package model;
import java.util.ArrayList;
import java.util.List;
public class FuncionarioDAO {
Produto p; // Essa linha... como faço isso em python?
List<Produto> itens = new ArrayList<Produto>();
public void Cadastrar(Produto p) {
itens.add(p);
}
public void Remover(int codigo) {
for(int i=0; i<itens.size(); i++) {
Produto p = itens.get(i);
if(p.getCodigo() == codigo) {
itens.remove(i);
break;
}
}
}
public void Alterar(Produto p) {
Remover(p.getCodigo());
Cadastrar(p);
}
}
I also have another question, I have POO basis, but I do not quite understand the database interconnection with the application.
There is a time when I need to pass the data to SQL and I do not know what to do.
Could anyone give me tips?