NP63. 修改报名名单
描述
输入描述
无输出描述
Python 解法, 执行用时: 10ms, 内存消耗: 2860KB, 提交时间: 2022-08-01
entry_form = ('Niuniu', 'Niumei') print(entry_form) try: entry_form[1] = 'Niukele' except TypeError: print('The entry form cannot be modified!')
Python 解法, 执行用时: 10ms, 内存消耗: 2868KB, 提交时间: 2022-08-04
entry_form=('Niuniu','Niumei') print(entry_form) try: entry_form[1]='Niukele' except TypeError: print('The entry form cannot be modified!')
Python 解法, 执行用时: 10ms, 内存消耗: 2944KB, 提交时间: 2022-08-01
entry_form = ('Niuniu','Niumei') print(entry_form) try: entry_form[1] = 'Niukele' except TypeError: print('The entry form cannot be modified!')
Python 解法, 执行用时: 11ms, 内存消耗: 2856KB, 提交时间: 2022-08-02
entry_form = ('Niuniu', 'Niumei') print(entry_form) try: entry_form[1] = 'Niukele' except TypeError: print('The entry form cannot be modified!')
Python 解法, 执行用时: 11ms, 内存消耗: 2944KB, 提交时间: 2022-08-02
entry_form=('Niuniu','Niumei') print(entry_form) try: entry_form[1]='Niukele' except: print('The entry form cannot be modified!')