Based on golden fractal tree project, draw the following shape that contains 5 golden fractal trees.
Based on golden fractal tree project, draw the following shape that contains 5 golden fractal trees.
Golden Fractal Tree is a tree based on Golden Ratio. The golden fractal tree contains the main branch and three smaller golden fractal trees: the first branch turns left by
Use recursion to draw the following snowflake shape generated from 6 sub-fractals of splitting lines. The following figures show recursion depths ranging from 0 to 4. Solution: To solve this
In a previous project we draw real stock price charts by reading data from files. We also draw stock moving averages in this project. Download historical stock prices for Google, Apple, and SPY
We have project that draws fully connected 24-gon. Use colorsys library to gradually change the hue of lines as they get longer.
Download historical stock prices for Google, Apple, and SPY. Read the file and draw the stock charts for these companies. The following figures show the stock prices for these companies:
In a previous project, we draw a trending stock price random walk chart. Candlestick chart is a more common way of representing stock price chart. Modify the code for the previous project to draw
In a previous project, we draw a stock price random walk chart. Candlestick chart is a more common way of representing stock price chart. Modify the code for the previous
In a previous project, we draw a pentagon spiral inside pentagons. Based on the solution, draw a striped pentagon spirals as shown with Python and Turtle. The modification to the
Draw the following fractal of hex stars using Python and Turtle. First, design a function that draws hex star in any position and size.