下列选项中,关于PyCharm描述错误的是()
A. PyCharm具备调试、语法高亮、Project管理等功能
B. PyCharm完全免费使用
C. PyCharm提供Profession和Community两个版本
D. Profession版本支持Web开发
下列数值中,不属于整数类型的是()。
A. 1.67
B. 300
C. 0xA80
D. -28
下列标识符中,合法的是( )。
A. _name
B. 2a
C. -name
D. a$
阅读下面的一段程序:score=78ifscore>=0andscore<=100:ifscore>=80andscore<=100:print("优")elifscore>=60andscore<80:print("良")elifscore>=0andscore<60:print("差")else:print("无效数字")运行程序后,最终执行的结果为()。
A. 优
B. 良
C. 差
D. 无效数字