Program: <?php echo "Array Demo <Br>"; $names = array("Atharva","Coding",124); print_r($names...
Read More
6 PHP inside HTML
Program: <html> <body> <select> <?php for($i=0;$i<50;$i++) { ...
Read More
5 For Loop in PHP
Program: <?php for($i=5;$i<=10;$i++) { echo "$i "; } ?> Output:
Read More
4 Do While Loop in PHP
Program: <?php $i = 0; do{ echo "$i "; $i++; }while($i<5) ?> Output:
Read More
3 While Loop in PHP
Prorgam: <?php $i=0; while($i<5) { echo "$i "; $i++; } ?> Output:
Read More
2 Constant Variable in PHP
Program: <?php define('name','atharva'); echo name; ?> Output:
Read More
1 Variables in PHP
Program: <?php $a = 0; echo "Variable: $a Type: ".gettype($a)."<br/>"; settype($a,"string"...
Read More
1 Program to find square root of a number in Python
Program: number = int(input("Enter any number:")) sqrt = number ** 0.5 print(" Number: ",sqrt) Output:
Read More
#7 String Datatype in Python
“string” Data Type: Sequence of collection of character. The python string can be represented using: 1) Single Quote (‘...
Read More
#6 Datatypes in Python
Mutable and Immutable Object’s Mutable Object : The value of mutable object can be modified in place after it’s creation....
Read More
#5 Variables in Python
Variable naming rules: Variables names must start with a letter or an underscore, such as: _underscore underscore_ The remainder of...
Read More
#4 Flavor's and Version of Python
Python Flavor's: Cpython: Standard python interpreter implemented in C Language. Here python code internally converted into interme...
Read More
#3 Features and Derivation of Python
Python Derivation Python was derived and built in such a way that it has included most of the Programming language features. 1) Procedu...
Read More
#2 History Of Python
History Of Python: Python was developed by Guido Van Rossum in the late 1980s. Rossum published the first version of Python code (0.9.0...
Read More
#1 Introduction to Python Programming Language
What is Python? 1) Python is widely used high level Programming language for general purpose programming created by Guido Van Rossum and ...
Read More
Subscribe to:
Posts (Atom)