About 979,000 results
Open links in new tab
  1. python - Printing a smile face :) - Stack Overflow

    Jan 11, 2017 · Here is equivalent code that works with an example face. # Create ints for known face orig = '''\ _____ | O | | - | ----- ''' ints = [[ord(c) for c in line] for line in orig.splitlines()] for line …

  2. Draw smiling face emoji using Turtle in Python - GeeksforGeeks

    Oct 7, 2020 · In this article, we will see how to draw a smiling face emoji using the Turtle module. Following steps are used : Import turtle. Make objects. Draw a circle and fill yellow color. Draw …

  3. python - Drawing fancy rectangle around face - Stack Overflow

    Sep 4, 2017 · Instead of looking for a function/lib that lets you make fancy rectangles, the following tactic might be easier: Step 1 - Download an image of the rectangle that you want, …

  4. How to make a smiling face in python turtle - Python Guides

    Nov 10, 2021 · For making a face we are using the following function. tur.fillcolor(‘cyan’) is used to fill the color inside the shape of the face that is a circle. tur.begin_fill() is used to start filling the …

  5. How to draw a face in Python (GUI) - Stack Overflow

    Dec 6, 2016 · Here's the code: win = GraphWin("Face Mover", 250, 250) win.setCoords(0, 0, 10, 10) win.setBackground("green") tic = Tick(win, Point(5,5), 2) #the window, middle, size of …

  6. Creating a Cartoon Face Using NumPy and OpenCV in Python

    Sep 5, 2023 · In this blog post, we will dive into the fascinating world of image manipulation using Python, NumPy, and OpenCV to create a charming cartoon face. We’ll take you through the …

  7. Program for Expressionless Face Pattern printing

    Feb 20, 2023 · Given the value of length, print the crown pattern using '*' and '#'. Note : In order to print a perfect crown, take the value of length as an odd number greater than 15. Examples : …

  8. OpenCV uses machine learning algorithms to search for faces within a picture. For something as complicated as a face, there isn’t one simple test that will tell you if it found a face or not. …

  9. Using python 3 turtle or graphics: 1. Draw an outline of a face

    Jul 12, 2023 · In the `draw_facial_features ()` function, you can use the turtle or graphics library to draw the desired facial features, such as eyes, nose, and mouth. Similarly, in the …

  10. PythonPrint Output using print() function - GeeksforGeeks

    Apr 2, 2025 · Python print () function prints the message to the screen or any other standard output device. In this article, we will cover about print () function in Python as well as it’s …

Refresh