# -*- coding: utf-8 -*-
"""
Created on Wed Sep 23 08:41:20 2020

@author: Sim
"""

# twostar1.py
def fcnarg3(x, **kwargs): 
 print(x, kwargs)
 print("First value is {first}, sencond value is {second}".format(**kwargs))

print(fcnarg3(0, first=1, second=2, third=3))
 