首页 > 编程 > Python > 正文

python开发之for循环操作实例详解

2020-01-04 17:56:51
字体:
来源:转载
供稿:网友

这篇文章主要介绍了python开发之for循环操作,以实例形式较为详细的分析了Python中for循环的具体使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了python开发之for循环操作。分享给大家供大家参考,具体如下:

下面是我做的一些学习记录供大家参考:

 

 
  1. #基本的for循环语句 
  2. test_list = [2,"Jone",3,6,7,'hongten','hanyuan','good',"Tom"
  3. #打印列表的长度 
  4. print(len(test_list)) 
  5. #遍历列表 
  6. for i in test_list: 
  7. print(i) 
  8. test_str = "hello,i'm hongten" 
  9. print('打印字符串:' + test_str) 
  10. #遍历一个字符串 
  11. print('遍历一个字符串'
  12. for i in test_str: 
  13. print(i) 
  14. test_tuple = [("a",1),("b",2),("c",3),("d",4)] 
  15. print(test_tuple) 
  16. #遍历一个元组 
  17. print('遍历一个元组'
  18. for (i,j) in test_tuple: 
  19. print(i,j) 
  20. test_dict = {'name':'hongten','age':'20','gender':'M','sports':'足球,乒乓球,游泳'
  21. #字典迭代器 
  22. for key in test_dict: 
  23. print(key + ':' + test_dict[key]) 
  24. L1 = [1,3,5,7] 
  25. L2 = [2,4,6,8] 
  26. #使用zip将两个列表合并 
  27. print(zip(L1,L2)) 
  28. for (i,j) in zip(L1,L2): 
  29. print(i,j) 
  30. print('#######################################################'
  31. L3 = L2[:] 
  32. L3.remove(8) 
  33. print('L1,L3列表为:'
  34. print(L1) 
  35. print(L3) 
  36. for (i,j) in zip(L1,L3): 
  37. print(i,j) 
  38. #可以看出来当长度不一的时候,多余的被忽略 
  39. test_keys = ['name','age','gender','weight','hight'
  40. test_values = ['Hongten','20','M','55','170'
  41. #使用zip来构造一个字典 
  42. print('字典中的keys:'
  43. print(test_keys) 
  44. print('字典中的key对应的value:'
  45. print(test_values) 
  46. print('构造字典后'
  47. test_dic = dict(zip(test_keys,test_values)) 
  48. for key in test_dic: 
  49. print( key + ':' + test_dic[key]) 

运行效果:

 

 
  1. Python 2.7.9 (default, Dec 10 2014, 12:24:55) [MSC v.1500 32 bit (Intel)] on win32 
  2. Type "copyright""credits" or "license()" for more information. 
  3. >>> ================================ RESTART ================================ 
  4. >>>  
  5. Jone 
  6. hongten 
  7. hanyuan 
  8. good 
  9. Tom 
  10. 打印字符串:hello,i'm hongten 
  11. 遍历一个字符串 
  12.  
  13. [('a', 1), ('b', 2), ('c', 3), ('d', 4)] 
  14. 遍历一个元组 
  15. ('a', 1) 
  16. ('b', 2) 
  17. ('c', 3) 
  18. ('d', 4) 
  19. gender:M 
  20. age:20 
  21. name:hongten 
  22. sports:足球,乒乓球,游泳 
  23. [(1, 2), (3, 4), (5, 6), (7, 8)] 
  24. (1, 2) 
  25. (3, 4) 
  26. (5, 6) 
  27. (7, 8) 
  28. ####################################################### 
  29. L1,L3列表为: 
  30. [1, 3, 5, 7] 
  31. [2, 4, 6] 
  32. (1, 2) 
  33. (3, 4) 
  34. (5, 6) 
  35. 字典中的keys: 
  36. ['name''age''gender''weight''hight'
  37. 字典中的key对应的value: 
  38. ['Hongten''20''M''55''170'
  39. 构造字典后 
  40. gender:M 
  41. age:20 
  42. name:Hongten 
  43. weight:55 
  44. hight:170 
  45. >>> 

希望本文所述对大家Python程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表