Home
Posts filed under AI
Showing posts with label AI. Show all posts
Showing posts with label AI. Show all posts
Tuesday, April 24, 2018
Tic Tac Toe Python
Program :Write a Program For tic tac toe game for 0 and X. Code : Link: https://inventwithpython.com/chapter10.html Output: ...
Read more
Animated Banner Program Python
Program: Write a Program to create an animated banner program. Code : import os import time WIDTH = 79 message = "Dishant"...
Tuesday, April 17, 2018
Water Jug Simple Python
Practical 11: Write a program to solve water jug problem. Code: class Waterjug: def __init__ ( self ,am,bm,a,b,g): self .a...
Panagram Checking Python
Practical 10: Write a Python function to check whether a string is pangram or not. For example: “the quick brown fox jumps over the la...
A * Search Python
Practical 9 : Write a program to implement A*algorithm. Code: import heapq hfun={ 'A' : 7 , 'B' : 6 , ...
Image Resolution Python
Practical 8: Write a program to find resolution of JPEG image. Code : def jpeg_res(filename): with open(filename, 'rb' ) as...
Saturday, February 24, 2018
Artificial Intelligence Python
2. Write a program to find the sum of all numbers stored in a list. Code: list= map ( int , input ( "Enter List : " ).strip...