17 lines
267 B
Python
17 lines
267 B
Python
|
"""
|
||
|
writen by shenjackyuanjie
|
||
|
mail: 3695888@qq.com
|
||
|
"""
|
||
|
|
||
|
import libs
|
||
|
import math
|
||
|
|
||
|
|
||
|
def P_C(A, type, B):
|
||
|
"""
|
||
|
formats:
|
||
|
type : "*" or "//"(or "/" "\" "\\")
|
||
|
A & B list format:docs.basic_config.json:basic_number
|
||
|
"""
|
||
|
C = [0.0, 1, [], []]
|
||
|
return C
|