在Python中,有没有办法制作
a, b, c, d, e = 'dog'
这样
a = 'dog'
b = 'dog'
#etc.
或
a, b, c, d, e = list()
这样
type(a through e)
返回
type 'list'
答案 0 :(得分:3)
这已在这里得到解答: Set multiple variables to the same value in Javascript
在python中它将是:
a = b = c = d = e = 'dog'
在javascript中相同,但在开头使用'var':
var a = b = c = d = e = 'dog'
答案 1 :(得分:0)
在c#in中就像声明变量一样简单,然后将它们设置为相等。
string a,b,c,d;
a = b = c = d = "dog";