《Python编程快速上手》4.10 实践项目
《Python编程快速上手》4.10 实践项目
Ramsayi4.10.1 逗号代码
1 | def strlist(listname): |
输出
1 | 'apples, bananas, tofu and cats' |
4.10.2 字符图网格
1 | grid = [['.', '.', '.', '.', '.', '.'], |
输出
1 | ..OO.OO.. |
评论
匿名评论隐私政策
✅ 你无需删除空行,直接评论以获取最佳展示效果
1 | def strlist(listname): |
1 | 'apples, bananas, tofu and cats' |
1 | grid = [['.', '.', '.', '.', '.', '.'], |
1 | ..OO.OO.. |