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