那一道题,不可能是全部吧
看什么?你的问题是什么
x = int(input(">>>"))
x = int(input(">>>"))
print("{} {} {} ".format(bin(x),oct(x),hex(x)))
student = ['王若飞', '经济管理', '会计', '2020-9-7']
print("{}同学,你已被我校{}学院{}专业录取,请于{}年{}月{}日准时到学校报到".format(student[0], student[1], student[2],
student[3].split('-')[0],
student[3].split('-')[1],
student[3].split('-')[2],
))
a , b = 3, 4
print('斜边的长是:{}'.format(pow( a **2 + b **2, 1 / 2)))
l = """A startup backed by the Japanese automaker has developed a test model that engineers hope will eventually develop into a tiny car with a driver who'll be able to light the Olympic torch in the 2020 Tokyo games."""
print(sorted(l.split(" "), key=lambda a:len(a), reverse= True)[0])