Discuss / Python / 第一题

第一题

Topic source

越聊越hi

#1 Created at ... [Delete] [Delete and Lock User]
def normalize(name):
        return name.capitalize()        
L1 = ['adam','LISA','barT']
L2 = list(map(normalize, L1))
print(L2)

  • 1

Reply