有没有办法为多个变量分配相同的值或属性?

Is there a way to assign multiple variables a same value or attribute?

在Python中,有没有办法让

a, b, c, d, e = 'dog'

所以

a = 'dog'

b = 'dog'

#etc.

a, b, c, d, e = list()

所以

type(a through e) 

returns

type 'list'

这里已经回答了这个问题: 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'

在 c# 中就像声明变量然后将它们全部设置为相等一样简单。

string a,b,c,d;

a = b = c = d = "dog";