Holy Angle School We are a New Generation School known to provide contemporary, practical and flexible learning programme to awaken unique traits in students to attain the ...
Posts
Hungry_Anaconda
- Get link
- X
- Other Apps
import turtle import time import random d = 0.1 score = 0 hscore = 0 win = turtle.Screen() win.title(" Hungry AnaConDa @By Sallu@@") win.bgcolor("light blue") win.setup(width=600, height=600) win.tracer(0) an = turtle.Turtle() an.speed(0) an.shape("square") an.color("dark green") an.penup() an.goto(0,0) an.direction = "stop" #food meat = turtle.Turtle() meat.speed(0) meat.shape("circle") meat.color("red") meat.penup() meat.goto(0,100) body =[] view = turtle.Turtle() view.speed(0) view.shape("square") view.color("yellow") view.penup() view.hideturtle() view.goto(0, 260) view.write("Score : 0 High Score : 0",align="center",font=("Showcard Gothic",24,"bold")) def up(): if an.direction != "down" : an.direction = "up" def down(): if an.direction != "up" : an.direction = "down" def left(): ...