Discuss / Python / 第一题

第一题

Topic source

姚树为

#1 Created at ... [Delete] [Delete and Lock User]

def caps(name): return name.capitalize() def lowers(name): return name.lower() print(list(map(caps,map(lowers,['adam','List','bart']))))


  • 1

Reply