python学习笔记--随时更新

# coding=GBK
score = 90
if score >= 80:
    print("")
elif score >= 60:
    print("及格")
else:
    print("")

win7 64位PC, 用#coding=utf-8还是乱码

  

原文地址:https://www.cnblogs.com/learning-c/p/4668279.html