Python:创建一个接受维度和参数的函数比例因子。返回按比例因子缩放的二维数组乘法表
我正在尝试创建一个函数来完成标题所要求的功能。不使用除 range、len 或append 之外的任何函数。该函数将获取二维数组的维度输入以及缩放因子,然后返回按缩放因子缩放的二维数组乘法表。
我尝试了各种不同的代码,但将它们排除在外,因为它们在测试用例上返回 0 进度。
I am trying to create a function that does what the title is asking for. Without the use of any functions besides: range, len or append. The function would take the dimensional input of the 2D array, as well as the scaling factor, and then return a two-dimensional array multiplication table scaled by the scaling factor.
I have tried various different code but have left them out because they return 0 progress on test cases.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望输出作为2D数组,则可以使用以下方式:
输出:
If you want the output as a 2d array, you can use this:
Outputs: