I want to make a function same range() for example func_range() that has three arguments for it func_range(start , end , step ) but when recall the function without parameter I want to print for example "please set the argument " .
how could I check the existence of argument in function
func_range(5) : print 1 to 5
func_range(1 , 5) : print 1 to 5
func_range() : print "please set the argument"