我在Python的第1天,我刚刚制作了这个管理员登录页面脚本。 如果您在插入正确的用户名和密码时将其重定向到网站,我会很高兴。 我已经在stackoverflow上搜索了这个但是我无法获得一些东西" easy"。 有什么建议吗?
print ("Pannello di Log-In in caricamento")
import time
time.sleep (2)
username=raw_input ("USERNAME: ")
if username=="admin":
time.sleep (1)
print (" ")
else:
time.sleep (1)
print (" ")
password=raw_input ("PASSWORD: ")
if password=="psw":
time.sleep (1)
print ("LOGGING-IN")
else:
time.sleep (1)
print ("LOGGING-IN")
答案 0 :(得分:3)
从python打开网页:
import webbrowser
webbrowser.open('http://example.com') # Go to example.com