Skip to content

Instantly share code, notes, and snippets.

@CodeMaster7000
CodeMaster7000 / Turtle Star.py
Created December 19, 2021 21:32
An impressive turtle star with just a few lines of code.
from turtle import *
speed=0
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
@CodeMaster7000
CodeMaster7000 / Typing Test.py
Created December 19, 2021 21:21
A typing test in python to measure your speed and accuracy when typing.
from time import time
def typingErrors(prompt):
global iwords
words = prompt.split()
errors = 0
for i in range(len(iwords)):
if i in (0, len(iwords)-1):