Python库允许我基于一组预定义的简单规则显示特定几何形状的库。

huangapple go评论71阅读模式
英文:

Which Python library would allow me to display certain geometrical shapes based on a set of predefined simple rules

问题

这是一组简单的规则:
Python库允许我基于一组预定义的简单规则显示特定几何形状的库。

应用这组规则后的输出:
Python库允许我基于一组预定义的简单规则显示特定几何形状的库。

请推荐一个简单的Python库或简单的方法,允许我使用Python来计算和可视化这样的计算。

请提供一个适合初学者的、易理解的答案。
1: https://i.stack.imgur.com/UU9YS.png
2: https://i.stack.imgur.com/acQ5S.jpg

英文:

Here is a set of simple rules:
Python库允许我基于一组预定义的简单规则显示特定几何形状的库。

And here is the output once this set of rules has been applied:

Python库允许我基于一组预定义的简单规则显示特定几何形状的库。

Please recommend a simple python library or a simple way that would allow me to use python to calculate and visualize such computations.

Please provide a beginner programmer friendly (easily comprehensible) answer.

答案1

得分: 1

我会使用两个for循环。
外部循环遍历行,内部循环从左到右遍历。

由于我喜欢索引,我会使用所需维度的numpy数组。

用于绘图的话,你可以使用imshow。它直接使用numpy的2D数组。

英文:

I would use two for loops.
The outer loop goes through the lines, the inner loop goes from left to right.

Since I like the indexing I would use numpy arrays of desired dimension.

For plotting you could use imshow. It takes directly the numpy 2D Array.

huangapple
  • 本文由 发表于 2023年5月20日 23:18:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/76295938.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定