#!/usr/local/bin/python2 def func_args_kw_only(arg1, *t, arg2): print('arg1: ', arg1) print('arg2: ', arg2) func_args_kw_only(100, arg2=200)