PROGRAMMING LANGUAGE:
PYTHON
JAVA
JAVASCRIPT
C,C++
FRONTEND DEVELOPER:
JAVASCRIPT-PROGRAMMING LANGUAGE
HTML-MARKUP LANGUAGE
CSS-MARKUP LANGUAGE
BACKEND DEVELOPER:
PYTHON-ARTIFICIAL INTELLIGENCE,DATA SCIENCE,VIRTUAL REALITY
JAVA-APP DEVELOPMENT
C-
C++
FULL STACK DEVELOPER
PYTHON:
EASY TO LEARN-SYNTAX(STRUCTURE)
AI
LARGE LIBRARIES
FREE AND OPEN SOURCE
HISTORY:
1980's NETHERLAND-CWI COMPANY(IT)-ABC PROGRAMMING LANGUAGE(DRAWBACKS)
GUIDDO VAN ROSSUM-CHRISTMAS HOLIDAY
MONTY PYTHON's FLYING CIRCUS-COMEDY SERIES
OFFICIALLY RELEASED IN 1991
print syntax:
1.values-Any object and as many as you like
2.seperator-Used to separate the values
3.end-escape character Ex \n
4.file-an object with write method
5.flush-Boolean (True-1 or False-0)
Variables:
1.Must start with a letter or underscore(_) character.
2.Cannot start with a number.
3.No special characters
4.No space
5.cannot be any of the keywords
Data Structures and Data types:
1.Numeric
i. Integer-It can be positive or negative without fractional point
ii. Float-It can be positive or negative with fractional point
iii. Complex Number-Real part + Imaginary part Ex.(4+2j)
2.Dictionary-Used to store values in key:value pair {}
3.Boolean-True or False
4.Set- *Used to store multiple values in single variable {}
*Unordered
*Unchangable
*Unindexed
*Duplicates not allowed
5.Sequence Types
i. String-Collection of alphabets, words or other characters enclosed
with single quotes('') or double quotes("")
ii. Tuple
*Used to store multiple values in single variable ()
*Ordered
*Allows duplicates
*Changable
*Indexed
iii. List