RECENT ARTICLES ON ARTIFICIAL INTELLIGENCE (AI)
In previous article we have seen how to get factorial of a number. In this article, we will see program of how to calculate population density of a country. It is a simple program and easy to...
In previous article we have discussed about Prolog and how to make program in Prolog. In the factorial program like take 5 PROGRAM: fact(1,1). fact(N,R):- N1 is N-1, fact(N1,R1), R is R1*N. ...
Artificial Intelligence Artificial intelligence is a branch of computer science which deals with such machines or computers that can do the jobs as well as humans like in order to have ability to...
- 1
- 2
PROLOG ARTICLES
No posts found.
PYTHON TUTORIALS
In our previous articles, we have learned about the basic programming concepts of Python. In this...
A function is very important in any programming language. The function will make your code more...
Earlier we learned about the List, today we will learn about the set. In Python, a Set is a...
In this article we will see what is list in Python and how do we use Lists in Python. In Python list...
In previous articles, we had seen conditional statements, how to use them and some python programs...
Python developers have a very good careerr scope and future, nowadays python is being used...
In the previous article, we have seen how can write if, if-else, and nested if conditional...
In previous articles, we have seen how to write your first Python program, using Range() function...
There are some reserved words in Python, you cannot use them as a variable or constant. If it is...