from os import system
def a(len1,hgt=len1,til,col=0):
system(\'mode con cols=\'+len1,\'lines=\'+hgt)
system(\'title\',til)
system(\'color\',col)
a(64,25
Let me clarify two points here :
(a = 'b',c) in function.
The correct order of defining parameter in function are :(a,b,c)(a = 'b',r= 'j')(*args)(**kwargs)def example(a, b, c=None, r="w" , d=[], *ae, **ab):
(a,b) are positional parameter
(c=none) is optional parameter
(r="w") is keyword parameter
(d=[]) is list parameter
(*ae) is keyword-only
(*ab) is var-keyword parameter
so first re-arrange your parameters
so second remove this "len1 = hgt" it's not allowed in python.
keep in mind the difference between argument and parameters.