已采纳回答 / 努力学习的泽羽
if name in s: #条件判断 name是否在s内 print 1 # 存在 打印 1else: #条件判断 name不存在于s,则 print 0 打印 0
2019-05-07
最新回答 / 小虾米爱上大猫咪
Python 3*>>> age = 8>>> if(age >= 6):... print('teenager')... elif(age >= 18):... print('adult')... else:print('kid')...teenager
2019-05-06
最新回答 / virtual_webwei
Eclipse with PyDevKomodo EditVim Sublime TextPycharmEmacsWingPyscripter
2019-05-05
最赞回答 / 该用户暂未设置昵称
你在suffer后面多写了个单引号,参考代码:print r'''"To be,or not to be":that is the question.Whether it's nobler in the mind to suffer.'''
2019-05-01