import datetimedef welcome(name): msg='欢迎登陆【%s】,今天的日期是【%s】'%(name,datetime.date.today()) print(msg)welcome("hahah")