Posts

Indian Flag

Image
Indian Flag design ---Source code---  # Author : E.Guru Prasad Reddy import turtle srn = turtle.Screen() srn.title( "Indian Flag" ) turtle.speed( 1 ) srn.bgcolor( "#121212" ) turtle.pencolor( "red" ) turtle.penup() turtle.goto(- 100 , 100 ) turtle.fillcolor( "#FF9933" ) turtle.begin_fill() turtle.setheading( 90 ) turtle.pendown() turtle.forward( 55 ) turtle.setheading( 0 ) turtle.forward( 300 ) turtle.setheading( 270 ) turtle.forward( 55 ) turtle.setheading( 180 ) turtle.forward( 300 ) turtle.end_fill() turtle.fillcolor( "white" ) turtle.begin_fill() turtle.setheading( 270 ) turtle.forward( 55 ) turtle.setheading( 0 ) turtle.forward( 300 ) turtle.setheading( 90 ) turtle.forward( 55 ) turtle.end_fill() turtle.penup() turtle.setheading( 180 ) turtle.forward( 160 ) turtle.setheading( 270 ) turtle.pencolor( "black" ) turtle.forward( 27.5 ) turtle.pendown() turtle.fillcolor( "navy" ) turtle.begin_fill() turtle.circle( 5 )...

Tic Tac Toe Game

Image
   Tic Tac Toe Game TIC TAC TOE GAME Design Using Python   ---Source Code--- #Programmer E.GURU PRASAD REDDY from ursina import * app = Ursina() camera.orthographic = True camera.fov = 4 camera.position = ( 1 , 1 ) Text.default_resolution *= 2 player = Entity( name = 'o' , color =color.azure) cursor = Tooltip(player.name, color =player.color, origin =( 0 , 0 ), scale = 4 , enabled = True ) cursor.background.color = color.clear bg = Entity( parent =scene, model = 'quad' , texture = 'shore' , scale =( 16 , 8 ), z = 10 , color =color.light_gray) mouse.visible = False # create a matrix to store the buttons in. makes it easier to check for victory board = [[ None for x in range ( 3 )] for y in range ( 3 )] for y in range ( 3 ): for x in range ( 3 ): b = Button( parent =scene, position =(x,y)) board[x][y] = b def on_click (b=b): b.text = player.name b.color = player.color b.collision = False c...

Android App Developer

Image
  7 Essential  Skills  You Need to be an  Android Developer Java. Java is the programming language that underpins all  Android  development. ... Understanding of XML. XML was created as a standard way to encode data for internet-based applications. ... Android Developer Android SDK . ... Android  Studio. ... APIs. ... Databases. ... Material Design.