我试图从根本上理解while循环,但不理解在一行代码中分配多个变量。
总计,x = 0,1
1是什么意思? 1属于哪里?请帮助
答案 0 :(得分:3)
total, x = 0, 1
它的意思是:
total = 0
和
x = 1
答案 1 :(得分:0)
您基本上是同时分配两个变量。
cat, dog = 'meow', 'woof'
与以下相同:
cat = 'meow'
dog = 'woof'
当您有一个需要返回多个变量的函数时,可以使用此方法。
def my_func(text):
return text, text.upper()
(original, edited) = my_func('hello')
print(original)
print(edited)
>>> hello
>>> HELLO