Draw Among Us Character In Python With Code

Want to draw among us character in python then you are at the right place because today in this tutorial I will show you how to draw among us in python turtle with code so read this guide till the end.
Among us is a popular video game. In the game, there are two types of player crewmates and imposters. The crewmates have to find the imposters to win the game, and imposters have to kill the crewmates.
It is a very interesting and fun game, so I will draw among us character using python. You don’t have to worry about anything. I will provide you with the python code to draw among us character.
Python Code For Drawing Among Us Character
import turtle
BODY_COLOR = 'red'
BODY_SHADOW = ''
GLASS_COLOR = 'grey'
GLASS_SHADOW = ''
s = turtle.getscreen()
tur = turtle.Turtle()
tur.speed(10)
def body():
tur.pensize(20)
tur.fillcolor(BODY_COLOR)
tur.begin_fill()
tur.right(90)
tur.forward(50)
tur.right(180)
tur.circle(40, -180)
tur.right(180)
tur.forward(200)
tur.right(180)
tur.circle(100, -180)
tur.backward(20)
tur.left(15)
tur.circle(500, -20)
tur.backward(20)
tur.circle(40, -180)
tur.left(7)
tur.backward(50)
tur.up()
tur.left(90)
tur.forward(10)
tur.right(90)
tur.down()
tur.right(240)
tur.circle(50, -70)
tur.end_fill()
def glass():
tur.up()
tur.right(230)
tur.forward(100)
tur.left(90)
tur.forward(20)
tur.right(90)
tur.down()
tur.fillcolor(GLASS_COLOR)
tur.begin_fill()
tur.right(150)
tur.circle(90, -55)
tur.right(180)
tur.forward(1)
tur.right(180)
tur.circle(10, -65)
tur.right(180)
tur.forward(110)
tur.right(180)
tur.circle(50, -190)
tur.right(170)
tur.forward(80)
tur.right(180)
tur.circle(45, -30)
tur.end_fill()
def backpack():
tur.up()
tur.right(60)
tur.forward(100)
tur.right(90)
tur.forward(75)
tur.fillcolor(BODY_COLOR)
tur.begin_fill()
tur.down()
tur.forward(30)
tur.right(255)
tur.circle(300, -30)
tur.right(260)
tur.forward(30)
tur.end_fill()
body()
glass()
backpack()
tur.screen.exitonclick()
Above is the python code to draw among character, First create a new folder for this project, Open it in a code editor, create a python file and paste the above code. You don’t have to make any changes to the code.
I have used the turtle library, which is a GUI library. You can draw things with this library. You don’t have to install the library manually because it comes installed with python setup.
But if you don’t have python installed or you get an error that says turtle module is not found, then you can use the below command to install turtle library.
pip install turtle
It will install the library in your project. Now you can run the program. To run the program, open a command prompt or terminal at the project location and paste the below command.
python filename.py
You can use this online python compiler to run this program now. The above command will run the program. A new window will open and it will start drawing the among us character, and below is the finished drawing output of this program.

As you can see, it successfully draws the among us character in python. I hope you got the same output as I have got.
Summary
This was the tutorial on drawing among us in python. I hope you found this program useful and helpful. Do share this guide with your friends and other programmers who might be interested in this program.
Here are more python drawing tutorials for you:
- Draw doraemon using python turtle.
- Draw shinchan using python turtle.
- Draw I love you using python turtle.
- Draw Batman logo using python turtle.
- Draw Google Logo using python turtle.
- Create a fruit ninja game in python.
- Make a python calculator using turtle.
- Draw christmas tree using python.
- Draw spiderman in python programming.
- Draw Pikachu in python turtle with code.
I hope you found what you were looking for from this article and if you want more tutorials like this in the future then do join our Telegram channel.
Thanks for reading, have a nice day 🙂