arithmetic formatter 源码
任务 小学学生通常会垂直排列算术问题,以使其更容易解决。 例如,“ 235 + 52”变为: 235 + 52 ----- 创建一个函数,该函数接收属于算术问题的字符串列表,并返回垂直并排排列的问题。 该函数应该有选择地接受第二个参数。 当第二个参数设置为True ,将显示答案。 例如 函数调用: arithmetic_arranger ([ "32 + 698" , "3801 - 2" , "45 + 43" , "123 + 49" ]) 输出: 32 3801 45 123 + 698 - 2 + 43 + 49 ----- ------ ---- ----- 函数调用: arithmetic_arranger ([ "32 + 8" , "1 - 3801" , "9999 + 9999"
文件列表
arithmetic-formatter-main.zip
(预估有个7文件)
arithmetic-formatter-main
misc.xml
211B
modules.xml
299B
workspace.xml
3KB
.gitignore
50B
arithmetic_arranger.py
2KB
arithmetic-formatter.iml
291B
README.md
3KB
暂无评论