-
Notifications
You must be signed in to change notification settings - Fork 0
/
HLXC PH v1.1.py
27 lines (23 loc) · 1.05 KB
/
HLXC PH v1.1.py
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
Language = input("What language r u use?zh-CN(zh-SG) , zh-TW(zh-HK,zh-MO) or en-UK (en-US)?If u use Chinese(Simplified) type 1,use Chinese(Tranditional) type 2, use English type 3.")
Language = int(Language)
if Language == 1:
digital = input("Please type the digital!")
if digital == 'hlsx':
print("恭喜你,成功输入了密码!")
print("这串字符的意思是:贺兰是屑!")
else:
print('The digital you entered is incorrect! Please enter again!')
if Language == 2:
digital = input("Please type the digital!")
if digital == 'hlsx':
print("恭喜你,成功輸入了密碼!")
print("這串字符的意思是:賀蘭是屑!")
else:
print('The digital you entered is incorrect! Please enter again!')
if Language == 3:
digital = input("Please type the digital!")
if digital == 'hlsx':
print("Congratulations,ur type's digital is right!")
print("This string mean : shaokeyibb is xie!")
else:
print('The digital you entered is incorrect! Please enter again!')