def que(subject="python",day=8): print("我学习{},已经学习{}天了。".format(subject,day))subject=input("你在学什么?")day=input("你学几天了?")que(subject,day)