我刚刚开始学习使用Python进行编码,并通过编写用户详细信息程序来开始使用。
我已经按照其应有的方式正常工作,但是我坚持在用户输入出生日期的第一天后如何显示斜杠“ /”。因此,当用户输入05051990时。我希望该界面在前5个后自动显示斜杠“ /”,然后在该年之前的一个月自动显示斜杠“ /”。
import os
import time
def main():
while True:
username = input ("Enter your Username: ")
password = input ("Enter your Password: ")
dateofbirth = input ("Enter your Date of Birth: ")
if username == 'james' and password == 'test' or 'James' and password == 'Test' and dateofbirth == '05/05/1990':
time.sleep(1)
print("Login successful!")
logged()
else:
print("Incorrect login details")
def logged():
time.sleep(1)
print ("Welcome!")
main()