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