Commit 5fff6ce3 by BellCodeEditor

auto save

parent a1bf8a59
Showing with 15 additions and 10 deletions
import turtle
pen=turtle.Pen();
pen.speed(0)
a=1;
for i in range(300):
pen.forward(a);
pen.right(91);
a+=1;
turtle.done()
\ No newline at end of file
#include<iostream>
using namespace std;
int main();
{
import turtle
pen=turtle.Pen();
pen.speed(0);
for i in range(300):
pen.forward(i);
pen.right(91);
a+=1;
turtle.done();
return 0;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment