赋值操作

作者:追风剑情 发布于:2017-12-12 15:15 分类:Python

示例

  1. # -*- coding: cp936 -*-
  2. #print打印多条语句,用逗号隔开
  3. print 'Age:', 42
  4. print 1,2,3
  5.  
  6. name = 'Gumby'
  7. salutation = 'Mr.'
  8. greeting = 'Hello,'
  9. #多条语句会自动以空格分开
  10. print greeting, salutation, name
  11.  
  12. #以逗号结尾的话,Hello world!会被输出到同一行。
  13. print 'Hello',
  14. print 'world!'
  15.  
  16. #模块导入方式
  17. #import 模块名
  18. #或者
  19. #from 模块名 import 函数名,...
  20. #或者
  21. #from 模块名 import *
  22.  
  23. #为导入的模块提供别名(import 模块名 as 别名)
  24. import math as foobar
  25. print foobar.sqrt(4)
  26.  
  27. #为函数提供别名
  28. from math import sqrt as foobar
  29. print foobar(4)
  30.  
  31. print '序列解包(sequence unpacking)或递归解包'
  32. #多个变量同时赋值
  33. x, y, z = 1, 2, 3
  34. print x, y, z
  35. #或者
  36. values = 1, 2, 3 #元组
  37. x, y, z = values
  38. print x, y, z
  39.  
  40. #交换两个(或多个)变量
  41. x, y = y, x
  42. print x, y, z
  43.  
  44. scoundrel = {'name':'Robin', 'girlfriend':'Marion'}
  45. key, value = scoundrel.popitem() #左右两边的数量必须相等,否则会报错。
  46. print key, value
  47. #Python3.0中可以这样写
  48. #a,b,*rest = [1,2,3,4] #多余的值会放在rest中
  49. #*rest,a,b = [1,2,3,4] #多余的值会放在rest中
  50.  
  51. #链式赋值(chained assignment)
  52. x = y = 1
  53.  
  54. #增量赋值
  55. x = 2
  56. x += 1
  57. x *= 2
  58.  
  59. fnord = 'foo'
  60. fnord += 'bar'
  61. fnord *= 2

运行测试

1111.png

标签: Python

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号