You are on page 1of 8

Welcome to

Girls Who Code Club!


What is Girls
● Learn programming

Who Code? ● Close gender gap in computer


science

● “Supportive sisterhood” to help


one another
Officers
President: Cathy Chang
Vice President: Sheryl Hsu
Treasurer: Natasha Cordova Diba
Advisor: Dr. Shen

Contact
Email: GirlsWhoCode.vcs@gmail.com
Username: 303Student
Password: pr0ct0ring
Turtle Drawing with Python

https://repl.it/site/languages/python_turtle

import turtle

your_turtle = turtle.Turtle()
your_turtle.showturtle()
Turtle Drawing with Python

import turtle

your_turtle = turtle.Turtle()
your_turtle.showturtle()

your_turtle.forward(100)
your_turtle.left(90)
Turtle Drawing with Python

import turtle

your_turtle = turtle.Turtle()
your_turtle.showturtle()

your_turtle.forward(100)
your_turtle.left(90)

your_turtle.color(“sky blue”)
your_turtle.forward(100)
Link to other functions:

https://docs.python.org/
2/library/turtle.html

You might also like