python小白求助

-- coding:UTF-8 --

创建字典存储用户信息

user_0 = {
“account”:”xxxxxxxxxx”,
“password”:”xxxxxxxxxx”,
“name”:”Tom”
}

创建循环检验账号及密码是否匹配

times = ‘0’
judgment_basic = ‘false’
while judgment_basic == ‘true’:
times = int(times)
if times <= 6:
account = input(“请输入账号:”)
password = input(“请输入密码:”)
if account == user_0[‘account’] and password == user_0[‘password’]:
judgment_basic = ‘true’
print(“Hello”,user_0[‘name’].title,”!” +
“Welcome to this website!”)
else:
times = times + 1
print(“ERROR Incorrect username or password.Please re-enter!”)
continue
else:
print(“You are trying 6 times,please login in other ways! “)
break

python小白求助

为啥编译出来啥都没有呢,求助大佬!