Python GUI Programming Part-1 (Introduction)

Today we are going to learn about Python GUI Programming.

What is Python GUI programming?

GUI stands for, Graphical User Interface. That means we are going to learn about Graphical programming with Python. Using the GUI program you can build software and web applications.

There are lots of GUI frameworks (or toolkits) for Python from Tkinter. We will start with tk for building desktop applications using Python.

Read more

Let us dive into C Part-6.1 [IF-Else]

Programming with C

If-Else General Structures and Usage

Hello my dear Programmers!!! Let us dive into C again…….

If you have read my last blog post on decision making in C then I am sure about that, You are here to understand the If Else Topic broadly. Even if you are not redirected from the previous post though you can read this thoroughly to understand If-Else General structures and usage precisely.

Read more

Let us dive into C Part-6 Decision Making (if else)

Hello readers!!!

Today we are going learn about doing some intelligent task with C. Excited??? Okay….. Let’s solve a problem.

Problem:

You will be given three variables assigning three different numbers. Now you will have to pick the largest variable by the value among them.

Read more

Career on Software Development

Career on Software Development (Education & Career Development)

Hello Readers!!!!

Some of my friends and followers were asking me to give an Idea to build their career on Software development. Today I am going to tell you about it.

First thing you will have to keep in mind that what is Software development and what is programming.

Programming: Programming is the skill by which you can create any

Read more

Let us dive into C Part-5 (Operators & Operands)

C Operators and Operands

Hello Readers!!!!!

How are you doing? I wish you are doing well. If you face any difficulties then please let me know here with comments.

Today we are going to learn about the Operators and Operands in C.

What is Operator?

Operators are the foundation of any programming language. We can define operators as symbols that help us to perform specific mathematical and

Read more

Documentation is the master key of all codes to get back after a long time gap.

Documentation is the master key of all codes to get back after a long time gap of your coding on that specific file.

Hello Readers!!!!!

Today I am going to share with you a silly but most important part of Coding on Documentation. The codes you are writing today is an asset for your future. If you can’t reuse the code after a while or you if can’t understand the code after a long time then that

Read more

Basic Website Design (HTML Elements)

HTML Elements:

The web pages are the collection of lots of HTML Elements. There are two types of elements we are using in the web pages. They are:

  • Built-in elements
  • User defined elements.

All elements usually consist of a start tag and end tag, with the content inserted in between:

<tagname>
        Content goes here...
</tagname>

Example:

Read more

Basic Website Design (Introduction)

Introduction to Webpage:

Webpages are simply a collections of HTML scripts. When we visit a website that time our browser decodes the HTML codes into webpage view that we see in the display of our desktop, mobile or tablets.

HTML is short of HyperText Markup Language.

  • Hypertext is simply a piece of text that works as a link
  • Markup Language is a way of writing layout information within documents.
Okay now let’s start doing some scripting here.

Read more

Let us dive into C Part-4 (Get some inputs from users)

Hello Everybody…..

I wish you are doing well with C and please give us feedback if you are facing any problem to understand or in the codes.

In my previous post we have learned that how to declare variables for different data types in C and now we are going to use them finally. Please look back if you have missed the previous post.

Now we will use the variable to get inputs from users. We know that a variable assigns some memories when we declare them. We will have to use the memory address to store the value which we will get from the users.

Read more

Let us dive into C Part-3 (Data types & Variables)

Hello readers!!!!

How’s going on? In my previous Post we saw that how to show something on the console using C program. Those who missed that episode you can click on the link below.

Hello World

Let me ask you a question guys,

How will you get some input from the users in C program using console???

Okay, Generally we will use variables to get inputs from users.

What is variable?
In the terms of C programming, variable is an specific type of memory where we can store any data with the specific data type. Now you may have a

Read more