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