Skip to main content

Draw Minecraft Charater in Python

 

Minecraft is a sandbox video game developed by the Swedish video game developer Mojang Studios. The game was created by Markus "Notch" Persson in the Java programming language. Following several early private testing versions, it was first made public in May 2009 before fully releasing in November 2011, with Jens Bergensten then taking over development. Minecraft has since been ported to several other platforms and is the best-selling video game of all time, with over 238 million copies sold and nearly 140 million monthly active users as of 2021.


We gonna build a character of Minecraft using our creativity and coding skills so let's drive into the code:

Code:

import turtle as t

def eye(r,a):
    t.fillcolor('brown')
    t.begin_fill()
    t.circle(r,a)
    t.end_fill()

t.begin_fill()
t.fillcolor('#8a00e6')
t.penup()
t.goto(0,-50)
t.pendown()
t.right(90)
t.forward(150)
t.left(90)
t.forward(70)
t.left(90)
t.forward(145)
t.right(90)
t.forward(5)
t.right(90)
t.forward(145)
t.left(90)
t.forward(70)
t.left(90)
t.forward(150)
t.left(90)
t.forward(145)
t.end_fill()
t.begin_fill()
t.fillcolor('#1ac6ff')
t.right(90)
t.forward(100)
t.left(90)
t.forward(45)
t.right(90)
t.forward(45)
t.right(90)
t.forward(235)
t.right(90)
t.forward(45)
t.right(90)
t.forward(45)
t.left(90)
t.forward(100)
t.end_fill()
t.begin_fill()
t.fillcolor('#00802b')
t.forward(10)
t.left(90)
t.forward(45)
t.left(90)
t.forward(110)
t.left(90)
t.forward(45)
t.end_fill()
t.back(45)
t.right(90)
t.forward(45)
t.left(90)
t.forward(45)
t.begin_fill()
t.fillcolor('#00802b')
t.right(90)
t.forward(90)
t.left(90)
t.forward(135)
t.left(90)
t.forward(90)
t.end_fill()
t.right(90)
t.forward(55)
t.left(90)
t.forward(45)
t.left(90)
t.forward(45)
t.begin_fill()
t.fillcolor('#00802b')
t.right(90)
t.forward(110)
t.right(90)
t.forward(45)
t.right(90)
t.forward(110)
t.end_fill()
t.penup()
t.goto(0,50)
t.pendown()
t.write('MINECRAFT 1 TRILLION VIEWS')
t.penup()
t.goto(50,146)
t.pendown()
eye(10,-360)
t.penup()
t.right(90)
t.forward(50)
t.pendown()
t.right(90)
eye(10,-360)
t.hideturtle()
t.done()

Follow my socials:

Youtube:https://www.youtube.com/channel/UCU1qNFntn7dCi9uqyvrGKOg

Instagram: https://www.instagram.com/python.math/

Twitter:https://twitter.com/Pritish369


For any question or coding discussion, you can join my discord or telegram:

Discord:https://discord.gg/be7MmSuV

Telegram:https://t.me/Python_Math_Community


Comments

Popular posts from this blog

Age and Gender Detection In Python - Creation Code

Gender Identity: Gender identity is the personal sense of one's own  gender . Gender identity can correlate with a person's  assigned sex  or can differ from it. In most individuals, the various biological determinants of sex are congruent and consistent with the individual's gender identity.  Gender expression  typically reflects a person's gender identity, but this is not always the case. While a person may express behaviors, attitudes, and appearances consistent with a particular  gender role , such expression may not necessarily reflect their gender identity. The term gender identity was coined by  Robert J Stoller  in 1964. Modules and assets: In this project, we will use the assetsOpenCV library which will help us to play with the camera  We also use some datasets to identify the faces and ages you can find those datasets  here Explanation: We will first train our models test.py import cv2 def faceBox ( net , frame , conf_thresho...

Walking Cat Animation using Pure CSS and HTML

  Showing your creativity with coding is really awesome and fun. This is the post where the creativity is the CSS. So enjoy the code and try to show your creativity. HTML: <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>walking Cat</title>     <link rel="stylesheet" href="style.css"> </head> <body>         <div id="marco">           <div id="cielo"></div>                 <div id="luna"></div>                 <div id="gato"></div>                 <div id="muro"></div>       ...