1. object and Variable every thing is an object, variable is a name of an object. 1.1 object each object has: type, value(content), id. you can use type() functiong to find the type of an object. type(3) int type(3.14) float type("hwdong.net") str type(False) bool the data type of these objects are different. Each object has a…