Python 一次讀取多個輸入值

2020-08-12 12:50:24
a,b,c = input('enter a b c: ').split()

輸入1 2 3

得到a=1 b=2 c=3