Use python to draw a bunch of gypsophila flowers, python gypsophila drawing flow chart

Hello everyone, I will answer the following questions for you, use python to draw a bunch of baby's breath flowers, and python to draw a flow chart of baby's breath, let's take a look today!

1. The code to draw one hundred concentric circles with python?

import matplotlib.pyplot as plt

from matplotlib.patches import Circle

# Create a graphics object

fig = plt.figure()

# Loop to draw one hundred concentric circles

for i in range(100):

# Create a circle using the Circle class, and specify the radius and center coordinates

circle = Circle(xy=(0, 0), radius=i+1)

# Add circles to the figure using the fig.add_subplot() method

ax = fig.add_subplot(1, 1, 1)

ax.add_patch(circle)

# call() method to display graphics

()

2. How to draw a baby's breath

Draw stars all over the sky, AI automatic writing uses drawing software to draw, simple and beautiful.

01. Open a blue canvas in the sai drawing software as the night sky.

02. Use brown to draw a few vertical lines in the middle to represent the branches full of stars.

03. Use the airbrush function to point some white dots on the branches to represent white flowers.

04. Then use light green to point some light green dots on it to represent light green florets.

05. Draw a pink bowknot in the middle of the branch to represent the streamer, and the gypsophila is finished.

Brief introduction of Gypsophila

Gypsophila gypsophila, formerly known as: cone stone flower, alias: cone filigree dianthus, cone filigree dianthus, silk carnation, cone flower Xiacao, gypsophila, caryophyllaceae, stone flower is a perennial herb. It is produced in Altai Mountains and Taxkorgan in Xinjiang.

Cold-resistant, like cold climate, avoid hot, rainy. Born in river beaches, grasslands, fixed sand dunes, rocky hillsides and farmland at an altitude of 1 100-1 500 meters. Also found in Kazakhstan, Russia (Siberia), Mongolia (western), Europe (western, central and eastern), North America. The roots and stems are used medicinally. Cultivation is available for viewing. The flower language of Gypsophila is: love who is willing to be a supporting role, only willing to be by your side.

Morphological characteristics

多年生草本,高30-80厘米。根粗壮。茎单生 ,稀数个丛生,直立,多分枝,无毛或下部被腺毛。叶片披针形或线状披针形,长2-5厘米,宽2.5-7毫米,顶端渐尖,中脉明显。

圆锥状聚伞花序多分枝,疏散,花小而多;花梗纤细,长2-6毫米,无毛;苞片三角形,急尖;花萼宽钟形,长1.5-2毫米,具紫色宽脉,萼齿卵形,圆钝,边缘白色,膜质;花瓣白色或淡红色,匙形,长约3毫米,宽约1毫米,顶端平截或圆钝;花丝扁线形,与花瓣近等长,花药圆形;子房卵球形,直径约1毫米,花柱细长。蒴果球形,稍长于宿存萼,4瓣裂;种子小,圆形,直径约1毫米,红褐色,具整齐的钝疣状凸起。花期6-8月,果期8-9月。

3、python怎么输出用*绘制的图形

python怎么输出用*绘制的图形如下说明。

其实想要输出*的图形是很简单的。只要在用print函数即可,如图片想要用*字符输出一个的图案,我要用只要用print加括号,括号中想要输出的字符用双引号引起来,如第一个print输出人上*字符,第二行输出三个字符,一直添加print,按一定的比例输出*即可。想要输复杂图形就要深入了解python语言才行。

Python简介,Python是一个高层次的结合了解释性、编译性、互动性和面向对象的。Python 的设计具有很强的可读性,相比其他语言经常使用英文关键字,其他语言的一些标点符号,它具有比其他语言更有特色语法结构。Python是一种解释型语言 这意味着开发过程中没有了编译这个环节。类似于PHP和Perl语言。Python是初学者的语言,Python对初级程序员而言,是一种伟大的语言,它支持广泛的开发。

Guess you like

Origin blog.csdn.net/aifans_bert/article/details/129467667