Update 2.md

别字修正
pull/34/head
wylnoword 2020-01-13 15:40:01 +08:00 committed by GitHub
parent 253d5e7cdc
commit 67faf2a795
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 )