输出显示乱码(Python)

时间:2018-09-25 15:51:44

标签: python-3.x

单击此链接以查看图像。

The image on the right hand side is my code.It is about class in python.The image on the left hand side is my output.

我想知道为什么我的输出出现乱码,我应该怎么做才能使输出可读?我是Python新手...

1 个答案:

答案 0 :(得分:0)

那是预期的行为。您只打印方法,而不打印这些方法的结果。

在方法中添加方括号以显示调用它们的结果:

print(rec.get_area())
print(rec.calculate_cost())