Python 3 中 int代表什么 有一道题不太明白
这道题:WhatwillbeprintedwhenthefollowingPython3programruns?a="5“b=ac=b*4print(c)c=int(c)...
这道题:
What will be printed when the following Python3 program runs?
a = "5“
b = a
c = b * 4
print(c)
c = int (c)
print ( c * 2)
答案是
5555
11110
什么原理~~~
c不应该是5 * 4 = 20吗?? 展开
What will be printed when the following Python3 program runs?
a = "5“
b = a
c = b * 4
print(c)
c = int (c)
print ( c * 2)
答案是
5555
11110
什么原理~~~
c不应该是5 * 4 = 20吗?? 展开
展开全部
"5" * 4 ,是重复字符串的内容4次。
5 * 4 才是20.
5 * 4 才是20.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
python里面字符串*数字,代表重复字符串多少遍
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
"5"不是5
(int)"5"才是5
(int)"5"才是5
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询