fork download
  1. #키워드 인수
  2. def test(x,y,z):
  3. print('x=',x,'y=',y,'z=',z)
  4.  
  5. test(10,20,30)
  6. test(x=10,y=20,z=30)
  7. test(z=10,x=20,y=30)
  8. #test(x=10,20,30) #오류 발생
Success #stdin #stdout 0.02s 28376KB
stdin
Standard input is empty
stdout
x= 10 y= 20 z= 30
x= 10 y= 20 z= 30
x= 20 y= 30 z= 10