这篇文章会记录我coding过程中掉进去的坑

 

---------------2018/06/05

[sourcecode language="python"]#输入几个字符串,用空格分隔,然后倒序输入
str1=input()

str_reverse=str1.split()
for words in reversed(str_reverse):
print(words,end=' ')
[/sourcecode]

遍历数组的时候,python会输出一个数值之后换行,研究了一下,在print(***,end=' ')语句里加入end=''就可以了

[sourcecode language="python"]#输入一个数字,求2的N次方
num=input("数字を入力してください")
print('2の'+num+'乗---->'+str(2**int(num)))
[/sourcecode]

python输出的时候,不可以用"+"拼接字符串和数字,必须转型。


如果支付遇到问题,请联系我们
Weixin1:Aburauru Weixin2:wanglanyy QQ:95387119
Last modification:September 12, 2018
如果觉得我的文章对你有用,请随意赞赏,点赞也是鼓励!