《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.. |