python3 name=input("what is your name?")
我打的是:print('hello')name=input("whatisyourname?")print('hello+name+!')可是我输入allen后,回车后出...
我打的是:
print('hello')
name=input("what is your name?")
print('hello+name+!')
可是我输入allen后,回车后出现是hello+name+!啊
怎么回事?嘿嘿我刚学,问的问题比较白痴啊!! 展开
print('hello')
name=input("what is your name?")
print('hello+name+!')
可是我输入allen后,回车后出现是hello+name+!啊
怎么回事?嘿嘿我刚学,问的问题比较白痴啊!! 展开
展开全部
print('hello+name+!')这个写错了
print('hello %s + !' % name)
print('hello %s + !' % name)
更多追问追答
追问
能给我解释一下什么意思吗?谢谢啊
追答
因为如果你用''括起来的话表示里面都是字符串 这时候name就是字符串 而不是你之前定义的变量。楼下的已经解释清楚了
hello
what is your name: "leyond"
hello leyond + !
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
print("hello,python")
name=input("What is your name?")
print('hello,'+ name + '!')
======================== RESTART: D:\python\hello.py ========================
hello,python
What is your name?
name=input("What is your name?")
print('hello,'+ name + '!')
======================== RESTART: D:\python\hello.py ========================
hello,python
What is your name?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |