标签:ret get nbsp bsp abc 返回 turn code python
1 def get_abc(): 2 a = 1 3 b = 2 4 c = 3 5 return a,b,c 6 7 temp = get_abc() #temp = (1,2,3) 8 a,b,c = get_abc() #a = 1,b = 2,c = 3
标签:ret get nbsp bsp abc 返回 turn code python
原文地址:https://www.cnblogs.com/suhfj-825/p/9339532.html