pull/34/merge
wylnoword 2020-10-11 10:52:05 +00:00 committed by GitHub
commit 7a2842342f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ iter1 = iter ( str1 )
list1 = [1,2,3,4]
iter2 = iter ( list1 )
# 3、tuple(元) 对象创建迭代器
# 3、tuple(元) 对象创建迭代器
tuple1 = ( 1,2,3,4 )
iter3 = iter ( tuple1 )