πŸ‘©β€πŸ’» Learn PROGRAMMING πŸ‘¨β€πŸ’»
6.54K subscribers
108 photos
10 videos
30 files
106 links
πŸ–₯Everything About Computer Science and CodingπŸ“²
πŸ“°News, Infographics, Quotes, Memes & Facts
πŸ’ΈYou can join us just for 0β‚Ή/0Β£/0€/0$
Admin: @Augustus_Caesar_Emperor_of_Rome
Download Telegram
Which Web Development course you want?(English version)
Anonymous Poll
20%
Edureka
15%
Others
❀1πŸ‘1
WEB DEVELOPMENT FULL 10 HOURS COURSE BY edureka!
Media is too big
VIEW IN TELEGRAM
Web Development Full Course - 10 Hours _ Learn Web Development from Scratch _ Edureka
πŸ‘3
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ‘1
πŸ”₯ Full Stack Web Development Training: https://www.edureka.co/masters-progra...​
This Edureka Web Development Full Course video will help you understand and learn Web Development in detail. This Web Development Tutorial is ideal for both beginners as well as professionals who want to master Web Development technologies. Below are the topics covered in this Web Development tutorial for beginners video:

00:00​ Introduction
1:46​ HTML
2:03​ What is HTML?
2:45​ Structure of HTML
3:38​ HTML Editors
4:21​ Writing a HTML program
5:14​ Doctype Declaration
6:30​ Elements
15:40​ HTML Forms
30:55​ CSS
30:54​ What is CSS?
31:59​ CSS Syntax
32:32​ CSS Selectors
33:54​ CSS Box Model
34:31​ CSS Units
1:34:26​ JavaScript
1:35:01​ What is Javascript?
1:36:46​ JavaScript Stats
1:37:34​ What can JavaScript do?
1:38:58​ JavaScript Framework
1:41:44​ Top Websites Built Using JavaScript
1:42:10​ Benefits of JavaScript
1:44:21​ JavaScript Fundamentals
1:51:23​ JavaScript Variables
1:52:59​ JavaScript Constants
1:52:58​ JavaScript Data Types
2:03:31​ JavaScript Objects
2:09:30​ JavaScript Functions
2:12:38​ JavaScript Conditional Statements
2:18:35​ JavaScript Loops
2:27:36​ JavaScript Switch Case
2:30:34​ jQuery
2:34:21​ Why use jQuery?
2:36:51​ Getting started with jQuery
2:39:31​ DOM
2:40:19​ jQuery Selectors
2:47:58​ jQuery Methods
3:20:58​ jQuery Effects
3:36:46​ jQuery UI
3:45:25​ Angular
3:51:56​ What is Angular?
3:56:44​ Single Page Application
3:58:31​ Angular 8: What's new?
4:02:03​ Angular Project Setup
4:06:16​ Writing the Angular First App
4:21:32​ What is Typescript?
4:22:59​ Integrating Ext CSS
4:32:53​ Angular Components
4:55:38​ Data Binding
5:06:51​ Event Binding
5:25:20​ Using Built-in Directives
5:44:37​ React.js
5:45:57​ Why ReactJs?
5:50:14​ Introduction to ReactJS
5:53:39​ Advantages of ReactJS
5:54:10​ ReactJS Installation
5:59:37​ RasctJS Fundamentals
6:00:17​ JSX
6:04:30​ React Components
6:09:12​ React Props
6:11:49​ React States
6:16:54​ React Lifecycle
6:22:34​ React Events
6:31:06​ React Refs
6:38:47​ React Keys
6:39:48​ React Routers
6:52:14​ Node.js
6:53:24​ What is Node.js?
6:54:43​ Features of Node.js
6:55:34​ Node.js Architecture
6:57:27​ NPM
6:58:58​ Node.js Modules
7:01:04​ JSON File
7:06:00​ Node.js basics
7:08:12​ Node.js Operators
7:10:21​ Node.js Functions
7:11:42​ Node.js Objects
7:12:34​ Node.js File System
7:16:21​ Node.js Events
7:27:11​ Node.js HTTP Module
7:28:14​ Express.JS
7:29:29​ Node.js Demo
7:41:13​ MEAN Stack Application
7:44:51​ CRUD Operations
7:44:56​ RESTful API
7:45:39​ Contact List MEAN App
9:00:49​ MERN Stack Applications
9:03:15​ MERN CRUD
9:04:02​ MERN Application To-Do List App
10:05:10​ How to Become a Full Stack Web Developer?

Check out our complete playlist here: https://bit.ly/2RuLkdO​
Check out our complete blog list here: https://bit.ly/34y8ipM​

---------------------------------------------------------
πŸ‘6
β€πŸ’›πŸ’™What is a Variable?
Variables are used to store information to be referenced and manipulated in a computer program. They also provide a way of labeling data with a descriptive name, so our programs can be understood more clearly by the reader and ourselves. It is helpful to think of variables as containers that hold information. Their sole purpose is to label and store data in memory. This data can then be used throughout your program.πŸ§‘πŸ’šπŸ’œ
πŸ’»πŸ–₯πŸ’»πŸ–₯πŸ’»πŸ–₯πŸ’»πŸ–₯πŸ’»πŸ–₯πŸ’»πŸ–₯πŸ’»
DATA TYPES
Variables come in all shapes and sizes. Some are used to store numbers, some are used to store text and some are used for much more complicated types of data.

*⃣The data types to know are:

⏺String (or str or text). Used for a combination of any characters that appear on a keyboard, such as letters, numbers and symbols.
*⃣Character (or char). Used for single letters.
⏹Integer (or int). Used for whole numbers.
⏺Float (or Real). Used for numbers that contain decimal points, or for fractions.
*⃣Boolean (or bool). Used where data is restricted to True/False or yes/no options.

*⃣⏺⏹ Different data types can occur in a real-life database example. In a film database, string links to title, float or real links to rating, integer links to times viewed and Boolean links to favourite.
In many programming languages variables must be declared before they can be used, for example:
πŸ“±πŸ“²πŸ“²πŸ“±πŸ“²πŸ“±πŸ“²πŸ“±πŸ“²πŸ“±πŸ“²
Visual Basic - dim score as int
Java – int score;
In some languages, such as Python, you can simply start using the variable without declaring it.
@learn_programming_coding
πŸ’»πŸ–₯πŸ’»πŸ–₯πŸ’»πŸ–₯πŸ’»πŸ–₯πŸ’»πŸ–₯πŸ’»πŸ–₯πŸ’»

WHY TO LEARN PYTHON?

πŸ”΄πŸ”΅Python is a high-level, interpreted, interactive and object-oriented scripting language. Python is designed to be highly readable. It uses English keywords frequently where as other languages use punctuation, and it has fewer syntactical constructions than other languages.⚫βšͺ

πŸ”ΊπŸ”»Python is a MUST for students and working professionals to become a great Software Engineer specially when they are working in Web Development Domain. I will list down some of the key advantages of learning Python:πŸ”»πŸ”Ί

β˜‘β˜‘β˜‘ Python is Interpreted βˆ’ Python is processed at runtime by the interpreter. You do not need to compile your program before executing it. This is similar to PERL and PHP.

β˜‘β˜‘β˜‘ Python is Interactive βˆ’ You can actually sit at a Python prompt and interact with the interpreter directly to write your programs.

β˜‘β˜‘β˜‘ Python is Object-Oriented βˆ’ Python supports Object-Oriented style or technique of programming that encapsulates code within objects.

β˜‘β˜‘β˜‘ Python is a Beginner's Language βˆ’ Python is a great language for the beginner-level programmers and supports the development of a wide range of applications from simple text processing to WWW browsers to games.
πŸ”»πŸ”ΊπŸ”»πŸ”ΊπŸ”»πŸ”ΊπŸ”»πŸ”ΊπŸ”»πŸ”ΊπŸ”»πŸ”Ί

πŸ”΄Characteristics of Python
Following are important characteristics of Python Programming βˆ’

βœ”It supports functional and structured programming methods as well as OOP.

βœ”It can be used as a scripting language or can be compiled to byte-code for building large applications.

βœ”It provides very high-level dynamic data types and supports dynamic type checking.

βœ”It supports automatic garbage collection.

βœ”It can be easily integrated with C, C++, COM, ActiveX, CORBA, and Java.
@learn_programming_coding
πŸ”ΆπŸ”·πŸ”ΆπŸ”·πŸ”ΆπŸ”·πŸ”ΆπŸ”·πŸ”ΆπŸ”·πŸ”ΆπŸ”·πŸ”ΆπŸ”ΆπŸ”·


βœ…β­•Applications of Pythonβ­•βœ…

πŸ”·πŸ”ΆAs mentioned before, Python is one of the most widely used language over the web. I'm going to list few of them here:

πŸ”ΉEasy-to-learn βˆ’ Python has few keywords, simple structure, and a clearly defined syntax. This allows the student to pick up the language quickly.πŸ”Έ

πŸ”ΈEasy-to-read βˆ’ Python code is more clearly defined and visible to the eyes.πŸ”Ή

πŸ”ΉEasy-to-maintain βˆ’ Python's source code is fairly easy-to-maintain.πŸ”Έ

πŸ”ΈA broad standard library βˆ’ Python's bulk of the library is very portable and cross-platform compatible on UNIX, Windows, and Macintosh.πŸ”Ή

πŸ”ΉInteractive Mode βˆ’ Python has support for an interactive mode which allows interactive testing and debugging of snippets of code.πŸ”Έ

πŸ”ΈPortable βˆ’ Python can run on a wide variety of hardware platforms and has the same interface on all platforms.πŸ”Ή

πŸ”ΉExtendable βˆ’ You can add low-level modules to the Python interpreter. These modules enable programmers to add to or customize their tools to be more efficient.πŸ”Έ

πŸ”ΈDatabases βˆ’ Python provides interfaces to all major commercial databases.πŸ”Ή

πŸ”ΉGUI Programming βˆ’ Python supports GUI applications that can be created and ported to many system calls, libraries and windows systems, such as Windows MFC, Macintosh, and the X Window system of Unix.πŸ”Έ

πŸ”ΉScalable βˆ’ Python provides a better structure and support for large programs than shell scripting.πŸ”Έ
@learn_programming_coding

πŸŸ«β¬œοΈβ¬›οΈπŸŸͺ🟦🟩🟨🟧πŸŸ₯πŸŸ«β¬œοΈβ¬›οΈπŸŸͺ🟦🟩🟨
πŸ‘1
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ‘¨β€πŸ’»How to download Python On WindowsπŸ‘©β€πŸ’»

βœ…Here are the steps to install Python on Windows machine.

1⃣Open a Web browser and go to https://www.python.org/downloads/.

2⃣Follow the link for the Windows installer python-XYZ.msi file where XYZ is the version you need to install.

3⃣To use this installer python-XYZ.msi, the Windows system must support Microsoft Installer 2.0. Save the installer file to your local machine and then run it to find out if your machine supports MSI.

4⃣Run the downloaded file. This brings up the Python install wizard, which is really easy to use. Just accept the default settings, wait until the install is finished, and you are done.

Join Here https://t.me/joinchat/USA_AOeOziA7NZqz
πŸ‘1
⭕️⭕️⭕️⭕️⭕️⭕️⭕️⭕️⭕️⭕️⭕️⭕️⭕️

πŸ‘©β€πŸ’»Python Install
Many PCs and Macs will have python already installed.πŸ‘¨β€πŸ’»

πŸ’»To check if you have python installed on a Windows PC, search in the start bar for Python or run the following on the Command Line (cmd.exe):

πŸ–₯C:\Users\Your Name>python --version
πŸ“²To check if you have python installed on a Linux or Mac, then on linux open the command line or on Mac open the Terminal and type:

python --version
⬇⬇⬇If you find that you do not have python installed on your computer, then you can download it for free from the following website: https://www.python.org/

πŸ–±βŒ¨Python Quickstart
Python is an interpreted programming language, this means that as a developer you write Python (.py) files in a text editor and then put those files into the python interpreter to be executed.βŒ¨πŸ–±

πŸ’½πŸ’ΎThe way to run a python file is like this on the command line:

C:\Users\Your Name>python helloworld.py
Where "helloworld.py" is the name of your python file.

πŸ–₯Let's write our first Python file, called helloworld.py, which can be done in any text editor.πŸ–₯

helloworld.py

πŸ–¨ print("Hello, World!") πŸ–¨
Simple as that. Save your file. Open your command line, navigate to the directory where you saved your file, and run:

πŸ’ΎC:\Users\Your Name>python helloworld.pyπŸ’Ύ

⬇The output should read:⬇

Hello, World!
πŸŽ‰πŸŽ‰πŸŽ‰Congratulations, you have written and executed your first Python program.πŸ†πŸ†
πŸŽ‰πŸŽ‰πŸŽ‰πŸŽŠπŸŽŠπŸ˜ŠπŸ‘βœ¨

πŸ”΄πŸŸ πŸŸ‘πŸŸ’πŸ”΅πŸŸ£βš«οΈβšͺ️🟀