Archive Post

Category: Python

Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python’s design philosophy emphasizes code readability with its notable use of significant whitespace. Its language constructs and object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects.

Python Learning Week 5 (Solution)

      Task 1 Write a program in python to implement given Graph, BFS and…

Python Learning Week 6 (Solution)

Task 1 Implement Greedy Best First Search Algorithm for the given example, if starting node…

Python Learning Week 7

Implementation of Greedy Best First Search & A* Search Algorithm Background Heuristics can be said to…

Python Learning Week 8

Implementation of K-nearest Neighbor Classification ModelBackgroundInstalling Panda, numpy, scipy, sklearn librariesGo to terminal in PycharmType pip install…

Python Learning Week 8 (Solution)

Task 1 Write a program to implement KNN classifier and classify given vector. (for k…

Python Learning Week 9

KNN Classifier In Artificial Learning Import data set: Creating Dependent and independent variables: Initialize the…

Python Learning Week 9 (Solution)

KNN Classifier In Artificial Learning Tasks Implement KNN algorithm yourself in python for Iris Dataset without using…

Python Learning Week 10

Naïve Bayes Classification Model   Background: Bayesian is one of the simplest probabilistic classifier that…

Python Learning Week 10 (Solution)

Naïve Bayes Classification Model   Tasks Task 1 Develop a python program to implement Bayesian…

Python Learning Week 11

Mini Project: Adversarial Search or Playing Games with Python  Game name: Tic Tac Toe (Using: The…