Netbyzz

#B046

Python :

#CODE = #B046
# import turtle module
from turtle import *

# Set the speed of the turtle
speed(5)

# title
title('Jai Shree Ram')

# background color 
bgcolor('black')

# pen size
pensize(5)

# pen  color
pencolor("orange")

# draw Jai Shree Ram in 50 times in circle
ram_naam = ["जय श्री राम"] * 50

#set  360 angle
angle = 360/50
penup()
sety(-1)
for i in range(50):
    left(angle)
    forward(260)
    write(ram_naam[i], align="right",
    font=('Arial',12,"bold"))
    backward(260)

# write ram name in the circle
penup()
goto(-40,-20)
pendown()
write("|| राम ||", font=("Arial", 60,
"normal"), align="center")
hideturtle()
done()

Source Code