Skip to main content

Featured

Tic Tac Toe

Tic Tac Toe Tic Tac Toe is a simple, two-player strategy game played on a 3x3 grid. Players take turns marking a square with either an "X" or an "O", with the goal of being the first to align three of their marks in a row, column, or diagonal.  I have made a simple Tic Tac Toe game using html, css, javascript.  The game doesnot have much features. The game is created to be played by two peoples. It is just a simple game. The code of this game you get in my github page   Link of this game code is below: Tic Tac Toe Game Code /

Which programming language should you learn at first?

There are many programming languages like C/C++, java, python, php etc. But the question is from which we can start that we can gain confidences that I can learn other programming language easily. Yes, this question is valid question. There are programming language but the easier and very fast to learn is python.

Python is one of popular programming language which allow you to create program in short code. For this let us take a example between python and C language to display "Hello world"

In C language to display "Hello world"

#include <stdio.h>

int main(){

printf("Hello world");

return 0;

In Python to display "Hello world";

print("Hello world")



From the above we can understand that by using python code is less. So we should not write very much of code to do something.

So, in my opinion we should learn python at first language. But if in your school or college other programming language has been taught that you should learn that first. You can learn python side wise.


Afterwards you can learn other programming language like java, php, etc.

Comments

Popular Posts