2017 - Coders PlayGround

Learn to code and change the future!

Tuesday, 29 August 2017

Functions with default parameter in Python3

August 29, 2017
Hello friends, lets learn something more about functions in Python3. We can set default parameters in the function. Check the following code: def...
Read More

Functions with Parameter in Python3

August 29, 2017
Functions with parameter Hello friends, It is also possible to define functions with a variable number of arguments.  Let us look at the code: Here...
Read More

Function in Python3

August 29, 2017
Functions in Python Hello friends, let us learn about function in Python3.  We define function using the keyword def.  So basically: def...
Read More

String in Python3

August 29, 2017
Hello friends, lets learn about the string in Python3. Concatenation in Python3 can be done using two different ways,   a) Using a '+'...
Read More

Range function in Python3

August 29, 2017
Hello friends, lets learn about range function in Python3. The range function generates arithmetic progression. Syntax of range function:    ...
Read More

If in Python3

August 29, 2017
Hello friends, lets learn about the if structure in Python3. The 'if' is same as in C, if the condition is true then the code is executed or else it...
Read More

If - Else Structure in Python3

August 29, 2017
Hello friends, lets learn about the if-else structure! Syntax: if condition:     #code else:     #code Check out this...
Read More

If elif else Structure in Python

August 29, 2017
Hello friends, lets learn about the if-elif-else structure. In C we write else if, here we use elif. else is optional.  Check out this program:   x...
Read More

For Loop in Python3

August 29, 2017
Hello friends, lets learn about for loop in python. The for loop in python is bit different than C.  Rather than always iterating over an arithmetic...
Read More

While Loop in Python3

August 29, 2017
Hello friends, lets learn about flow control Statements In this post, I'll explain about while loop  The syntax of while loop: counter_var  while...
Read More

Math Functions

August 29, 2017
Hello friends, lets learn about the math functions of Python3 import math a = 2 b = 5 print(a+b) print(a-b) print(a/b) print(a*b) print(a**b) print("Value...
Read More

Introduction Of Python

August 29, 2017
Hello friends, lets learn python programming!!! Have you ever wondered why Python is named as Python??? Lets see the features and other advantages...
Read More

Print Function

August 29, 2017
Hello friends! This is a simple program to print on Screen To print the content we simply use the print() function. Whatever is written inside the...
Read More

Saturday, 19 August 2017

Conditional Statement in Java

August 19, 2017
Program to calculate the percentage of given 3 subjects and print the appropriate grade. The if construct: if(condition) {     // The desired...
Read More

Factorial of a number in Java

August 19, 2017
Hello everyone, The factorial is denoted by "!" So when we say, find 3 factorial, it is mathematically written as 3! Now let us look into the formula...
Read More

Hello world in Java

August 19, 2017
Hello Friends, This is a program to print a simple message: Remember: The file name should be same as the class Name. In this case, the file name...
Read More

Sunday, 6 August 2017

Stack using link list implementation

August 06, 2017
Hello Friends, #include<stdio.h> #include<stdlib.h> struct stack { int data; struct stack *next; }; struct stack *top = NULL; struct...
Read More
Page 1 of 712345...7Next �Last
.com/blogger_img_proxy/