0% found this document useful (0 votes)
3 views2 pages

Day 1 Python

The document outlines various programming languages and their applications, including Python, Java, and JavaScript. It details the roles of frontend, backend, and full stack developers, along with Python's history and key features. Additionally, it covers Python's syntax, variable rules, and data structures such as numeric types, dictionaries, booleans, sets, and sequence types.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views2 pages

Day 1 Python

The document outlines various programming languages and their applications, including Python, Java, and JavaScript. It details the roles of frontend, backend, and full stack developers, along with Python's history and key features. Additionally, it covers Python's syntax, variable rules, and data structures such as numeric types, dictionaries, booleans, sets, and sequence types.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

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

You might also like