Posts

Showing posts from August, 2022

Python - Self Learning in a Fast & Simple Way

Image
    Python - Self Learning Part 2 Python Strings   String is a series of characters enclosed within quotes (single, double, or triple quotes). To access the strings, we use slice operator. String characters start at index 0 instead of 1, means that first character is at index (place) 0. It is good to know when you want to determine or access the string characters. We can concatenate strings in Python, and we use + operator (sign). The asteric * symbol is used for repeating strings. # is used to write statement/comments or explanation which will not show in coding result. Please be noted that space between two characters also considered as a character.   Example: welcome = "Welcome Back" print (welcome) #to print the complete string Welcome Back   E.g., print (welcome [0]) # to print the first character of the string. W   e.g., print (welcome [2:9]) # to print from 3 rd character to 9 th character but 9 th character will not show ...

Python - Self Learning in a Fast & Simple Way

Image
  Python - Self Learning Part 1 Uses of Python 1- Web Development  2- Machine Learning  3- Data Analysis  4- Scripting  5- Game Development  6- Embedded Applications  7- Desktop Applications  It can be practically used for procedure and object orientation. Python is an integrated lang. For deep learning & machine learning we have to install a group of packages. Anaconda makes it easy to install and use.  It can be downloaded from  https://bit.ly/3xptBd4   Windows & Macintosh OS download and install it as per instructions. There are 100s of programming languages available to IT professionals & enthusiasts. Python has made a significant place due to its dynamic network. It is continuously attempting to reduce bugs and cleaning up the highlights. Here are the following reasons, how Python got its position. Its quality when you program a website using it. Clients experience fewer bugs. It supports other programs ideal models...

Data Analysis