Skip to main content

5 Unique and Useful Python modules.

Motive           There are different types of modules in python which not everyone knows so we thought of introducing them to you guys. Let's start! Note: This is not a tutorial of how to use these but is to show that these modules also exist and if you want to know more you can visit there own page and if you want us to explain leave a comment below. Links to there page are also given below. Hope you found something useful. 1.Wikipedia          Yes, there is a module called Wikipedia in python, you can easily install Wikipedia by pip install wikipedia . We cannot rely on this module for advanced use. It was designed for ease of use and simplicity.  Learn More Here .  Here is a simple example: import wikipedia wikiPython = wikipedia.summary("Python", sentences=2) print(wikiPython)           One big disadvantage is that it works only if the internet is connected to your device. You can even control the number of sentences that you

Fibonacci Sequence Algorithm in Python

Motive

    To get a job as a programmer you need to pass the coding interviews in which certain questions/algorithms are asked to be solved.
     
The Project 
 
What is the Fibonacci Sequence?

        The Fibonacci Numbers are a series of numbers in which each number is the sum of the proceedings numbers for example 1,1,2,3,5,8,13 etc. Learn more Here.
  
    1. We are going to create a function that takes the nth number i.e F1=1, F2=1, F3=2, F4=3, F5=5, F6=8, F7=13 etc. In F4=3, 4 is the nth number and in F6=8, 6 is the nth number.

But before that, we will make a list of the Fibonacci numbers and we can access them with its index.

Let's begin, paste this code into your python ide:


Run the code for about 2 sec and then press ctrl+c you will get something like this:



First, we make a variable called a and give it the value of 1 
Then, we make a list called list in which we put 0 and 1 
Now, we make a while loop and make a variable called fib we take the last two numbers in the list and add them and then append the new number to the list, fib = list [a-1] + list [a], here we set a as the index of the last number in the list at the beginning it is set to 1 i.e the second number in the lists (1)then after we find the third number we change the value of a + 1 and add the new number to the list.

This is how the code run:


a=1                        |  a=2                           |  a=3
list=[0,1]               |  list = [0,1,1]              |  list =[0,1,1,2]
while True:            |  while True:               | while True:
    fib = 0 + 1         |    fib = 1+1                |    fib = 1+2
    a +=1                |     a+=1                      |     a+=1
    list.append(1)   |     list.append(2)         |     list.append(3)
    print(list)          |     print(list)                |      print(list)
  
and continues like this. So now we have all the numbers of the Fibonacci sequence. Instead of printing the whole list, we could take the nth number and print only the corresponding value.

For that let's make a function



Here I made a function called Fib and give a parameter called num then we check if num lesser than 0 
is so we print Give a value greater than or equal to 0.

if num is equal to zero then we will print 0
and if num is greater then 0 we will do the same as we did above but here we will append the list only till a == num i.e until the index is equal to the nth number and the print the nth from the list.

Here we tried Fib(6) and got 8 printed on the console. So this works, now let's make some changes to make it more perfect.

I have made small changes look down below:







        If you have any doubts or errors in the program feel free to comment down below and I will respond as early as possible. And if I have made any mistake please correct me in the comment box below. 





Comments

Popular posts from this blog

Digital Clock | Python | Pygame

  Motive            Just to keep this the way I make other projects on my website. Just ignore this and jump right into the project. Oh and here's a preview of what we are going to make. The Project          We will be using pygame to create our Digital Clock, I believe all of you have installed pygame, if not just open the command prompt and type pip install pygame and hit enter. Learn more about pygame here  https://www.pygame.org/docs/ . Feel free to skip to the end to get the full code.           Okay back to the project, first, let's make a basic pygame window. So import pygame, initialize pygame, set an icon, make a screen like a rectangle then set its caption or whatever you call it, make a while loop to make it run till the exit button is pressed, and update the pygame display. Looks like a lot but these are necessary to even make a basic pygame project. Everyone who has at least worked with pyga

Chrome Dino Game Automation with Python.

Motive           I saw a video on YouTube that made a python program to automate the chrome dino game at the end he shows a clip of the program playing the game. But there was a problem with the code I do not work when it's dark so I thought of turning the dark mode in the laptop so that it stays dark all the time but that did not work after reaching a score of 700 it becomes day again so I have to think of an alternative see how I did it. The Project  First Import the necessary modules in your IDE import pyautogui from PIL import Image, ImageGrab import time PyAutoGUI   lets Python control the mouse and keyboard, and other GUI automation tasks.                    First, open your terminal and run pip                          learn more on   Pyautogui                    

Never Lose a Game of Chess | Python Chess Hack

Motive            I lost every game that I played chess with my friends. So why not cheat, even though  it was not the best option, I had to somehow prove that I was not dumb and can even win against them. Since they play online with me, I had a better chance to cheat so I thought of creating an ai to play against them but it was not that easy so I started surfing through the internet to find a better way. Then I found stockfish it was a chess engine that generates the best move for us. So I used it as my AI. Again, luck was with me I was able to find a module called chess in python that helped me a lot and now my work was really very easy. At last, I created the program and won the games against them but they had figured out that I was cheating and my friends started mocking at me. Then I understood that I was wrong and I shouldn't have cheated and started working hard for it and now I literally can win matches with them even though I lost many of t