Article \ | tide

Source: Python Technology “ID: pythonall”

Today is March 8, collectively known as March 8 Women’s Day! \

But! Please note that 38 Women’s days is not women’s festival, and a very special festival, o sauce here first wish you goddesses happy holiday!

About March eighth Women’s Day

38 Women’s Days is not women’s festival, and about women’s rights!

Women’s Day origin:

In the 19th century, with the rapid development of capitalism, capitalists began to employ women workers, but they were paid the same as men for their work. Women workers worked 16 or 17 hours a day without rest, and their situation was very miserable. On March 8, 1908, 1,500 women marched in New York City to demand shorter working hours, better pay, the right to vote, and an end to child labor.

In May, the Socialist Party of The United States decided to observe women’s Day on the last Sunday of February. In August 1910, the second International Socialist Women’s Congress was held in Copenhagen, Denmark, and the Congress passed the March 8 demonstration of American women as international Women’s Day.

Chinese women first commemorated march eighth in 1924. Under the leadership of the Communist Party of China, working women in Guangzhou united oppressed women from all walks of life to hold a memorial meeting.

On the United Nations website introducing International Women’s Day, the origin of March 8th international Women’s Day is attributed to a series of major events of the women’s movement in the early 20th century. These events include:

In 1909, the Socialist Party of The United States designated February 28 as National Women’s Day;

In 1910, the Second International Copenhagen Conference to Clara Zetkin headed by more than 100 women from 17 countries planned to establish international Women’s Day, but did not specify the exact date;

On March 19, 1911, more than a million women gathered in Austria, Denmark, Germany and Switzerland to celebrate International Women’s Day.

On the last Sunday of February 1913, Russian women celebrated their International Women’s Day with demonstrations;

March 8, 1914, women in many European countries held anti-war demonstrations;

On March 8, 1917 (February 23), Russian women went on strike to commemorate the deaths of nearly 2 million Russian women in World War I, beginning the February Revolution. Four days later, the Czar was forced to abdicate and the provisional government announced that women would be given the right to vote.

This series of feminist movements in Europe and America in the early 20th century contributed to the birth of International Women’s Day.

In today’s society, no matter at home or at work, women’s status is becoming more and more important. After a woman gets married, she needs to balance family and career, take care of the children at home and work hard outside.

So I think women: great!

Special gifts for the goddesses

Today I used Python to make a different gift for the goddesses. May you stay healthy and beautiful forever! The gift details are as follows:

The picture above is a different gift for the goddesses today. The picture above is made up of two parts, one is a heart, the other is a rose. Python made the masterpiece in two parts.

Code for drawing hearts:

# Draw a large heart (random position)for x, y in list(zip(list1, list2)):
    t.penup()
    t.goto(x, y)
    t.pendown()
    t.fillcolor("#FF6A6A")
    t.begin_fill()
    t.pencolor("#FF6A6A")
    t.forward(40)
    t.circle(20.180)
    t.right(90)
    t.circle(20.180)
    t.forward(40)
    t.end_fill()
    t.penup()
    t.goto(x, y) # Heart in the picture (position random)for x, y in list(zip(list5, list6)):
    t.pendown()
    t.fillcolor("#FFA07A")
    t.begin_fill()
    t.pencolor("#FFA07A")
    t.forward(30)
    t.circle(15.180)
    t.right(90)
    t.circle(15.180)
    t.forward(30)
    t.end_fill()
    t.penup()
    t.goto(x, y) # Draw the trumpet heart (position random)for x, y in list(zip(list3, list4)):
    t.pendown()
    t.fillcolor("#FFD39B")
    t.begin_fill()
    t.pencolor("#FFD39B")
    t.forward(20)
    t.circle(10.180)
    t.right(90)
    t.circle(10.180)
    t.forward(20)
    t.end_fill()
    t.penup()
    t.goto(x, y) # draw dots (position random)for x, y in list(zip(list7, list8)):
    t.pendown()
    t.fillcolor("#FF6A6A")
    t.begin_fill()
    t.pencolor("#FF6A6A")
    t.circle(3.360)
    t.end_fill()
    t.penup()
    t.goto(x, y)
Copy the code

Draw the rose code as follows:

The initial position is set to s =0.2
# t.setup(450*5*s, 750*5*s)
t.pencolor("black")
t.fillcolor("#FF4040")
t.speed(100)
t.penup()
t.goto(0.900* s) t.pendown() # draw the flower shape t.pagin_fill () t.circle(200 * s, 30)
DegreeCurve(60.50 * s)
t.circle(200 * s, 30)
DegreeCurve(4.100 * s)
t.circle(200 * s, 50)
DegreeCurve(50.50 * s)
t.circle(350 * s, 65)
DegreeCurve(40.70 * s)
t.circle(150 * s, 50)
DegreeCurve(20.50 * s, - 1)
t.circle(400 * s, 60)
DegreeCurve(18.50 * s)
t.fd(250 * s)
t.right(150)
t.circle(- 500. * s, 12)
t.left(140)
t.circle(550 * s, 110)
t.left(27)
t.circle(650 * s, 100)
t.left(130)
t.circle(- 300. * s, 20)
t.right(123)
t.circle(220 * s, 57) t.ed_fill () # draw the flower branch shape.120)
t.fd(280 * s)
t.left(115)
t.circle(300 * s, 33)
t.left(180)
t.circle(- 300. * s, 33)
DegreeCurve(70.225 * s, - 1)
t.circle(350 * s, 104)
t.left(90)
t.circle(200 * s, 105)
t.circle(- 500. * s, 63)
t.penup()
t.goto(170 * s, - 30 * s)
t.pendown()
t.left(160)
DegreeCurve(20.2500 * s)
DegreeCurve(220.250 * s, - 1) # Draw a green leaf.'#00CD00')
t.penup()
t.goto(670 * s, - 180. * s)
t.pendown()
t.right(140)
t.begin_fill()
t.circle(300 * s, 120)
t.left(60)
t.circle(300 * s, 120)
t.end_fill()
t.penup()
t.goto(180 * s, - 550. * s)
t.pendown()
t.right(85)
t.circle(600 * s, 40# Draw another green leaf t.penup() t.goto(- 150. * s, - 1000. * s)
t.pendown()
t.begin_fill()
t.rt(120)
t.circle(300 * s, 115)
t.left(75)
t.circle(300 * s, 100)
t.end_fill()
t.penup()
t.goto(430 * s, - 1070. * s)
t.pendown()
t.right(30)
t.circle(- 600. * s, 35)

t.done()
Copy the code

Write in the last

The above is today’s special gift to the goddess, in this exclusive day I hope that every beautiful little sister is beautiful as flowers! Live your life!

reference

Blog.csdn.net/su_2018/art…

conclusion

I wish the goddess a happy holiday, I hope that the goddess of the male compatriots in the home to cherish the side of the partner!

PS: Reply “Python” within the public number to enter the Python novice learning exchange group, together with the 100-day plan!

Old rules, brothers still remember, the lower right corner of the “watching” click, if you feel the content of the article is good, remember to share moments to let more people know!

[Code access ****]

Identify the qr code at the end of the text, reply: 210308