Posts

How to Get WiFi Passwords With Python

Image
How to Get WiFi Passwords With Python Today we will learn how can we  Get WiFi Passwords With Python . Sometimes we forget our own connected wifi password. And when someone asks for the password to connect with the same network we decline. In this article, we are going to learn how we can see wifi passwords with python. What you’ll learn? Explanation of getting wifi passwords with python How to run cmd commands using Python program About subprocess module Stepwise flow of code Source code of get wifi passwords with python Output Explanation: Get Wifi Passwords with python In order to get wifi passwords, we are going to use the  subprocess  module of Python which makes it easy to check the connected wifi passwords by allowing us to run (cmd)command prompt commands inside our program. We have two netsh commands using them we can easily see wifi passwords. Logic is very simple, we will run cmd commands to check wifi passwords inside our program with the help of the subprocess module as me

Draw Among Us Character with Python Turtle

Image
                                      Draw Among Us Character with Python Turtle In this tutorial, we will learn how we can Draw Among Us Character with Python Turtle. By the end of the tutorial, you will learn about most of the basic topics in Python Turtle. First, we will see the concept of how to draw the character, and then we will see the code for it. Explanation: First Part: First, import the turtle module. Then, set the value of a variable “color1” as “yellow”,”color2″ as “”, “color3” as “sky-blue” and “color4” as “”. Likewise, create an instance of the turtle and store it in “t”. Create a screen for the turtle and store it in “s”. The Body as Jiu() function: Create a function named jiu(). Inside this function, set the pen size of the turtle as 20. Fill the color as in “color1” and begin the fill. Set the turtle right at an angle of 90 degrees and move the turtle forward at an angle of 50 units. Set the turtle right at an angle of 180 degrees and create a circle with the argumen