You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@unins, regarding Add_v02.py, multi-language Calculator, you can use [ 3x 8 ] Matrix Array on language selection. for instance, setAsk_Lang[0][1] = "This is CACULATOR 1.1.2". (number is counting from '0')
You can see the whole thing with below.
`import time, sys, os
w = ("add","sub","mult","div","divn") # SET as TUPLE ( )
set_LANG = ( # Language SELECTION
"Wrong number\n",
"Language selected\n",
"언어가 설정 되었습니다\n",
"言語が設定されてい\n"
)
@unins, regarding Add_v02.py, multi-language Calculator, you can use [ 3x 8 ] Matrix Array on language selection. for instance, setAsk_Lang[0][1] = "This is CACULATOR 1.1.2". (number is counting from '0')
You can see the whole thing with below.
`import time, sys, os
w = ("add","sub","mult","div","divn") # SET as TUPLE ( )
set_LANG = ( # Language SELECTION
"Wrong number\n",
"Language selected\n",
"언어가 설정 되었습니다\n",
"言語が設定されてい\n"
)
setAsk_LANG = ( [ # setAsk_LANG[0] = Header
"\n\tCALCULATOR 1.2.2 계산기입니다.",
"\n\tThis is CALCULATOR 1.1.2",
"\n\tCALCULATOR 1.2.2 計算機です."], [
n = 0
for i in range(8):
for k in range(3):
n += 1
print("[%d][%d]-->"%(i,k), setAsk_LANG[i][k])
print("\n")`
The text was updated successfully, but these errors were encountered: