Blog of Far Away 6834
by
SyntaxError : / must be ahead of * : when function signiture is f(⋯, *argv, ⋯, /, ⋯) -> ⋯SyntaxError: * argument may appear only once : when * argument is apper more onceSyntaxError: arguments cannot follow var-keyword argument : when arguments are follow after **kargv i.e. “every function signiture is kargv included signiture or kargv excluded signiture” ⋯ Priniple Of KargvSyntaxError: parameter without a default follows parameter with a default : when function signiture is f(⋯ (n.b. no * argument is placed in here), ParamWithADefault = "♡", ⋯ (n.b. no * argument is placed in here), ParamWithoutDefault, ⋯)[function name](⋯, any * argument, ⋯, [KwOnlyArgv]) without setting [KwOnlyArgv] = [value]TypeError: [function name]() got some positional-only arguments passed as keyword arguments: '[PosOnlyArgv]' : when call function which signiture is [function name](⋯, [PosOnlyArgv] (n.b. it can have default value), ⋯, /, ⋯) as “[PosOnlyArgv] = value”SyntaxError: at least one argument must precede / : when function signture is [function name](/, ⋯)SyntaxError: named arguments must follow bare * : when function signiture is [function name](⋯, *)(*, **) is actually (*, ). because ** is syntax error, so no argument is after *. only error are fllows. and…. (, /) or”(*, )is also case of (/, ⋯) and (⋯, *)* argument
unnamed * argument : argv which name *named * argument : argv which name *[name]var-keyword argument) : **[kargv]positional-only argument : argument which placed before / symbolkeyword-only argument : argument which placed after * argumentafter - / symbol, before * argumentsummarry : argument part of pythonic function signiture must be
(⋯(optional : pos-only without default)⋯, ⋯(optional and conditional : pos-only with a default (when pos without default is not exist))⋯, (conditioanl : / symbol (when pos-only argument is exist)), ⋯(optional and conditional : pos without default (when pos-only with a default is not exist))⋯, ⋯(optional and conditonal : pos with a default)⋯, (conditionally optional : * argument (optional when kw-only argument is not exist, if else, * argument must be exist)), ⋯(optional : kw-only argument), (optional : var-keyword argument))(non type-hinted ver expression)
writen by FarAway6834, Jul 28, 2026
NOTA BENE (FUTUTUS GRAVITER CAUTIO) : MY ENGLISH SKILL IS FUCKING TERROBLE. SUCKS. I CANNOT SPEAK ENLISH AS VERY WELL. I APPOLOGIZE THIS GOD DAMB ISSUE
tags: