mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-07 20:15:24 +00:00
11 lines
820 B
Python
11 lines
820 B
Python
# 16.05.24
|
||
|
||
symbols_mapping = {
|
||
'→': '-', '←': '-', '↑': '^', '↓': 'v',
|
||
'↔': '<->', '↕': '||', '⇄': '<=>', '⇅': '||',
|
||
'°': 'deg', '±': '+/-', 'µ': 'u', '×': 'x', '÷': '/',
|
||
'≤': '<=', '≥': '>=', '≠': '!=', '≈': '~=', '∑': 'sum', '∏': 'prod',
|
||
'√': 'sqrt', '∞': 'inf', '∫': 'int', '∇': 'grad', '∂': 'd', '∴': 'therefore', '∵': 'because',
|
||
'¬': 'not', '∧': 'and', '∨': 'or', '⊕': 'xor', '⊗': 'times',
|
||
'α': 'alpha', 'β': 'beta', 'γ': 'gamma', 'δ': 'delta', 'ε': 'epsilon', 'ζ': 'zeta', 'η': 'eta', 'θ': 'theta', 'ι': 'iota', 'κ': 'kappa', 'λ': 'lambda', 'μ': 'mu', 'ν': 'nu', 'ξ': 'xi', 'ο': 'omicron', 'π': 'pi', 'ρ': 'rho', 'σ': 'sigma', 'τ': 'tau', 'υ': 'upsilon', 'φ': 'phi', 'χ': 'chi', 'ψ': 'psi', 'ω': 'omega'
|
||
} |