Let's say i'm calling a function given the following arguments
Function(char1, char2, char3, char4, Number)
where the first 4 terms represent chars and the last is an int, i might add more chars so the function can't be static . The main function will start like 
def Function(*args):
  table_line = ""
  for x in range(Number/2): 
but by giving the Function args it no longer knows that it should use the supplied argument number in that third line.
 
     
    