python的print

Posted 吴武陵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python的print相关的知识,希望对你有一定的参考价值。

grid=[[., ., ., ., ., .],
      [., 0, 0, ., ., .],
      [0, 0, 0, 0, ., .],
      [0, 0, 0, 0, 0, .],
      [., 0, 0, 0, 0, 0],
      [0, 0, 0, 0, 0, .],
      [0, 0, 0, 0, ., .],
      [., 0, 0, ., ., .],
      [., ., ., ., ., .]]
for j in range(len(grid[0])):
    for i in range(len(grid)):
        print(grid[i][j],end=‘‘)
    print(
)
        

 

以上是关于python的print的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记:python3,代码片段(2017)

Python学习总结

Python面向对象学习之八,装饰器

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段

Python 向 Postman 请求代码片段