-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathlambda10.py
More file actions
35 lines (31 loc) · 2.36 KB
/
lambda10.py
File metadata and controls
35 lines (31 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
showcase = lambda a, /, b, *, c: (a + b + c)
showcase : source.python
: source.python
= : keyword.operator.assignment.python, source.python
: source.python
lambda : meta.lambda-function.python, source.python, storage.type.function.lambda.python
: meta.function.lambda.parameters.python, meta.lambda-function.python, source.python
a : meta.function.lambda.parameters.python, meta.lambda-function.python, source.python, variable.parameter.function.language.python
, : meta.function.lambda.parameters.python, meta.lambda-function.python, punctuation.separator.parameters.python, source.python
: meta.function.lambda.parameters.python, meta.lambda-function.python, source.python
/ : keyword.operator.positional.parameter.python, meta.function.lambda.parameters.python, meta.lambda-function.python, source.python
, : meta.function.lambda.parameters.python, meta.lambda-function.python, source.python
b : meta.function.lambda.parameters.python, meta.lambda-function.python, source.python, variable.parameter.function.language.python
, : meta.function.lambda.parameters.python, meta.lambda-function.python, punctuation.separator.parameters.python, source.python
: meta.function.lambda.parameters.python, meta.lambda-function.python, source.python
* : keyword.operator.unpacking.parameter.python, meta.function.lambda.parameters.python, meta.lambda-function.python, source.python
, : meta.function.lambda.parameters.python, meta.lambda-function.python, source.python
c : meta.function.lambda.parameters.python, meta.lambda-function.python, source.python, variable.parameter.function.language.python
: : meta.lambda-function.python, punctuation.section.function.lambda.begin.python, source.python
: source.python
( : punctuation.parenthesis.begin.python, source.python
a : source.python
: source.python
+ : keyword.operator.arithmetic.python, source.python
: source.python
b : source.python
: source.python
+ : keyword.operator.arithmetic.python, source.python
: source.python
c : source.python
) : punctuation.parenthesis.end.python, source.python