Initial commit: Python learning project with examples and exercises

This commit is contained in:
2025-07-20 17:08:50 +08:00
commit bc7bb56271
111 changed files with 11535 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#6.3.2
try:
a=eval(input())
print(len(a))
except NameError:
print('字符串外需要加引号')
except TypeError:
print('数字不能用len()')
except:
print('其它错误')