为了账号安全,请及时绑定邮箱和手机立即绑定

程序没有打印出结果

写了注释右边没有出来结果,没写注释却能出来,这是怎么回事?

正在回答

2 回答

这么写

#coding=utf-8  
a = 'python'
print 'hello,', a or 'world'
# a为真(True),输出"hello, python"
b = ''
print 'hello,', b or 'world'
# b为假(False)('',None,0都会转化为False),输出"hello, world"

默认编码是ASCII,声明用包含中文的utf-8后才能正常添加中文注释

0 回复 有任何疑惑可以回复我~
#1

HoSalt 提问者

非常感谢!
2017-04-17 回复 有任何疑惑可以回复我~
#coding=utf-8
a = 'python'
print 'hello,', a or 'world'

b = ''
print 'hello,', b or 'world'


# a为非空字符串,是True,返回a
# b为空字符串'',是False,返回'world'


0 回复 有任何疑惑可以回复我~
#1

HoSalt 提问者

非常感谢
2017-04-17 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
初识Python
  • 参与学习       758623    人
  • 解答问题       8667    个

学python入门视频教程,让你快速入门并能编写简单的Python程序

进入课程

程序没有打印出结果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信