摘要: # 实验任务1 ```python print(sum) sum = 42 print(sum) def inc(n): sum = n+1 print(sum) return sum sum = inc(7) + inc(7) print(sum) ``` ![image](https://img 阅读全文
posted @ 2023-05-21 15:45 风自然 阅读(55) 评论(0) 推荐(0) 编辑