Showing posts with label Python. Show all posts
Showing posts with label Python. Show all posts

Saturday, August 7, 2021

Tuples in Python

1. Tuple are immutable and basically can't change the values inserted. 

2. Use Parenthesis ()

3. Sequential Order

Also will learn 

Read tuple


- Repeat Tuple  (*) & Concatenate Tuple  (+)




- Min Value 

- Max Value 






Friday, August 6, 2021

Variables and Data-types in Python

 Compare to other programming languages, one big difference in Python you no need to declare the variable type. 


for example 

employee_name = "bala"

employee_name 

in the above example I didn't declare the variable type called string. but it takes automatically. 

its known as dynamically typed programming. 

In addition to Int, float, Boolean and String we have datatype called "Complex"


Complex data type example 

a1=3+5j

type (a1) = complex






Saturday, July 31, 2021

Python Installation

 1. Install python 

 Installed Python 3.9 for Window 10 version. It supports about Windows 9. 

 Link to download : https://www.python.org/downloads/

It supports Mac OS as well and refer the link provided for all the details. 

Keep moving. 

Python Introduction and exploring

 Hi All, 

I am back to programming and am exploring Python now and going to share lot of content relevant to Python including my experience in various real time projects. 

Keep watching and happy learning in Python.