封装调出问题,无法调出,不知道为什么

问题遇到的现象和发生背景

python学习中封装完后用下滑线吊不出来

问题相关代码,请勿粘贴截图

class Employee:
def init(self,name,age):
self.name=name
self._age=age

e = Employee("高琪",18)
print(e.name)
print(e._Employee__age)

运行结果及报错内容

AttributeError: 'Employee' object has no attribute '_Employee__age'

我的解答思路和尝试过的方法

看视频,到CSDN上寻求帮助

我想要达到的结果

导出:高琪
18


print(e._age)

img


那有_Employee__age?