当前位置:   article > 正文

Python print() 函数

Python print() 函数

Python print() 函数

传递给函数的值称为参数。请注意,引号没有打印在屏幕上。它们只是表示字符串的起止,不是字符串的一部分。可以用这个函数在屏幕上打印出空行,只要调用 print() 就可以了,括号内没有任何东西。

1. example 1

  1. Microsoft Windows [版本 6.1.7601]
  2. 版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
  3. C:\Users\foreverstrong>python
  4. Python 3.6.0 (v3.6.0:41df79263a11, Dec 23 2016, 08:06:12) [MSC v.1900 64 bit (AMD64)] on win32
  5. Type "help", "copyright", "credits" or "license" for more information.
  6. >>> print("Hello World!")
  7. Hello World!
  8. >>> exit()
  9. C:\Users\foreverstrong>

2. example 2

  1. Microsoft Windows [版本 6.1.7601]
  2. 版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
  3. C:\Users\foreverstrong>python
  4. Python 3.6.0 (v3.6.0:41df79263a11, Dec 23 2016, 08:06:12) [MSC v.1900 64 bit (AMD64)] on win32
  5. Type "help", "copyright", "credits" or "license" for more information.
  6. >>> width = 5
  7. >>> width
  8. 5
  9. >>> symbol1 = '*'
  10. >>> symbol1
  11. '*'
  12. >>> print(symbol1 * width)
  13. *****
  14. >>> symbol2 = 'x'
  15. >>> symbol2
  16. 'x'
  17. >>> print(symbol2 * width)
  18. xxxxx
  19. >>> symbol3 = '0'
  20. >>> symbol3
  21. '0'
  22. >>> print(symbol3 + (' ' * (width - 2)) + symbol3)
  23. 0 0
  24. >>> print(symbol2 + (' ' * (width + 2)) + symbol2)
  25. x x
  26. >>> print(symbol1 + (' ' * (width + 0)) + symbol1)
  27. * *
  28. >>> exit()
  29. C:\Users\foreverstrong>

References

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/658513
推荐阅读
相关标签
  

闽ICP备14008679号