mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
63 lines
1.5 KiB
Plaintext
63 lines
1.5 KiB
Plaintext
#### Operator
|
|
|
|
| + | - | * | / | == | > | < | >= | <= | % | ** | // | != | & | >> | << | and | or | not | in | += | -= | *= | /= |
|
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
|√|√|√|√|√|√|√|√|√|√|√|√|√|√|√|√|√|√|√|√|√|√|√|√|
|
|
|
|
#### Control flow
|
|
|
|
| Syntax | State |
|
|
| --- | --- |
|
|
| if | √ |
|
|
| while | √ |
|
|
| for in [list] | √ |
|
|
| for in range(a, b) | √ |
|
|
| for in [dict] | √ |
|
|
| if elif else | √ |
|
|
| for break/continue | √ |
|
|
| while break/continue | √ |
|
|
|
|
#### Module
|
|
|
|
| Syntax | Python Module | C Module |
|
|
| --- | --- | --- |
|
|
| import [module] | √ | √ |
|
|
| import [module] as | √ | - |
|
|
| from [module] import [class/function>]| √ | - |
|
|
| from [module] import [class/function>] as | √ | - |
|
|
| from [module] import * | - | PikaObj Module Only |
|
|
|
|
#### List/Dict
|
|
| Syntax | State |
|
|
| --- | --- |
|
|
| l = list() | √ |
|
|
| l = [a, b, c] | √ |
|
|
| d = dict() | √ |
|
|
| d = {'a':x, 'b':y, 'c':z} | √ |
|
|
|
|
#### Exception
|
|
|
|
| Syntax | State |
|
|
| --- | --- |
|
|
|try:| √ |
|
|
|except:| √ |
|
|
|except [Exception]:| - |
|
|
|except [Exception] as [err]: | - |
|
|
|except: ... else:| - |
|
|
|raise:| √ |
|
|
|raise [Exception]:| - |
|
|
|finally:| - |
|
|
|
|
#### Slice
|
|
|
|
| Syntax | str | bytes | list |
|
|
| --- | --- | --- | --- |
|
|
| test[i] | √ | √ | √ |
|
|
| test[a : b] | √ | √ | √ |
|
|
| test[a :] | √ | √ | √ |
|
|
|
|
#### Other keywords/Syntax
|
|
|
|
| yield | is | comprehensions |
|
|
| --- | --- | --- |
|
|
| - | √ | - | |