[go: up one dir, main page]

0% found this document useful (0 votes)
5 views17 pages

Day 2

The document is an internship report by Modi Shubham M. at BrainyBeam Technologies Pvt. Ltd., detailing his experience during the summer internship as part of his Computer Engineering program at Gujarat Technological University. It includes the company's profile, acknowledgments, and an overview of Python programming, highlighting its features and applications in data science. The report emphasizes the importance of data analysis across various industries and the role of Python in developing solutions.

Uploaded by

harshozaharshoza
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views17 pages

Day 2

The document is an internship report by Modi Shubham M. at BrainyBeam Technologies Pvt. Ltd., detailing his experience during the summer internship as part of his Computer Engineering program at Gujarat Technological University. It includes the company's profile, acknowledgments, and an overview of Python programming, highlighting its features and applications in data science. The report emphasizes the importance of data analysis across various industries and the role of Python in developing solutions.

Uploaded by

harshozaharshoza
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 17

GUJARAT TECHNOLOGICAL UNIVERSITY

KD POLYTECHNIC, PATAN
SUMMER INTERNSHIP(4330001)
INTERNSHIP REPORT ON

BrainyBeam Technologies Pvt.

.Ltd

D.E. SEMESTER-III

BRANCH - Computer Engineering

Submitted by:-
MODI SHUBHAM M.

Prof. Shweta Rajput Type the Name of


Ext. guide

Academic year (2022-2023)


GUJARAT TECHNOLOGICAL UNIVERSITY

(Internal Guide) (External


Guide)

Academic year (2022-2023)


GUJARAT TECHNOLOGICAL UNIVERSITY

Company Profile

Company Name: BrainyBeam Technologies Pvt Ltd


Address: 118, Sukan Mall , Science city road, Ahmedabad
Contact No: +91 9033237336
Email Id : sagar@brainybeam.com
Website: www.brainybeam.com
About Us

At BrainyBeam, we see Innovation as a clear differentiator. Innovation, along with focus on


deep, long-lasting client relationships and strong domain expertise, drives every facet of our
day-to-day operations.

BrainyBeam Technologies was founded with a vision to address growing businesses' needs of
reducing the time to market and cost effectiveness required to develop and maintain unique
and customized web and mobile solutions. We are uniquely and strategically positioned to
partner with startups and leading brands to help them expand their business and offer the most
effective and cost-efficient solutions that provide revenues and value to their business needs.

Vision
To become the most trusted and preferred offshore IT solutions partner for Startups, SMBs and
Enterprises through innovation and technology leadership. Understanding your ambitious
vision, honing in on its essence, creating a design strategy, and knowing how to technically
execute it is what we do best. Our promise? The integrity of your vision will be maintained and
we'll enhance it to best reach your target customers. With our primary focus on creating
amazing user experiences, we'll help you understand the tradeoffs, prioritize features, and
distill valuable functionality. It's an art form we care about getting right.

Academic year (2022-2023)


GUJARAT TECHNOLOGICAL UNIVERSITY

Joining Letter

Academic year (2022-2023)


GUJARAT TECHNOLOGICAL UNIVERSITY

Completion Certificate

Academic year (2022-2023)


GUJARAT TECHNOLOGICAL UNIVERSITY

ACKNOWLEDGEMENT

I would like to express my deepest gratitude to all those who provided me the
possibility to the completion of the internship. A special gratitude of thanks I
give to our Assitant Professor, Prof. Shweta Rajput, whose contribution in
stimulating suggestions and encouragement, helped me to coordinate the
internship especially in drafting this report.

Furthermore, I would also like to acknowledge with much appreciation the crucial
role of the Head of Department, Dr. Avani Vasant, who gave the permission to use
all required equipment and the necessary material to fulfil the task. Last but not the
least, many thanks go to the teachers and my friends and families who have
invested their full effort in guiding us in achieving the goal.

Also I appreciate the guidance given by the developer at BrainyBeam, Mr Raj


as well as the panels especially for the internship that has advised me and gave
guidance at every moment of the internship.

1|Page
GUJARAT TECHNOLOGICAL UNIVERSITY

Abstract

Data Science and analysis is playing the most significant role today covering
every industry in the market. For e.g., finance, e-commerce, business,
education, government.
Now organizations play a 360-degree role to analyse the behaviour and interest
of their customers to take decisions in favour of them. Data is analysed through
programming language such as python which is one of the most versatile
language and helps in doing a lot of things through it.
Netflix is a pure data science project that reached at the top through analysing
every single interest of their customers. Key terminology that are used in Data
Science are: Data Visualization, Anaconda Jupyter Notebook, Exploratory Data
Analysis, Machine Learning, Data wrangling, and Evaluation using scikit
library’s surprise module.

2|Page
GUJARAT TECHNOLOGICAL UNIVERSITY

||| DAY – 1

BASIC INTRODUCTION AND PYTHON KNOWLADGE


Explain about work flow of whole internship. Also discuss Use Of
Python.

What Is Python ?
i. Python is a computer programming language.
ii. Python is general purpose language.
iii. Python is high level programming language.
iv. Phython is object oriented programming language.

What Can Python Do?

 Create web application


 Create web site
 Create software
 Connect to database system. It can also read and modify
 Handle big data
 Used for data visualization

Features Of Python
3|Page
GUJARAT TECHNOLOGICAL UNIVERSITY

1. Easy to code
2. Easy to Read
3. Free and Open-Source
4. Robust Standard Library
5. Interpreted
6. Portable
7. Object-Oriented and Procedure-Oriented
8. Extensible
9. Expressive
10. Support for GUI
11. Dynamically Typed
12. High-level Language
13. Simplify Complex Software Development

4|Page
GUJARAT TECHNOLOGICAL UNIVERSITY

DAY 1:- PRINT MESSAGE USING PYTHON

5|Page
GUJARAT TECHNOLOGICAL UNIVERSITY

• Python installation:- Link :


https://www.python.org/downloads/

6|Page
GUJARAT TECHNOLOGICAL UNIVERSITY

||| DAY – 2 BASIC OF PYTHON OPERATORS AND PYTHON FLOW


CONTROL:-
Explain about work flow of whole internship. Also discuss Use Of
Python.

WHAT IS PYTHON OPERATORS ?

• Operators are used to perform operations on variables and values.


• In the example below, we use the + operator to add together two values:
 Example :-
print(10 + 5)

Python divides the operators in the following groups:


o Arithmetic operators
o Assignment operators
o Comparison operators
o Logical operators
o Identity operators
o Membership operators
o Bitwise operators

PYTHON FLOW CONTROL:-

1.IF STATEMENT
2.ELIF STATEMENT
7|Page
GUJARAT TECHNOLOGICAL UNIVERSITY

3.ELSE STATEMENT

• Keyword:Keywords are the reserved words in Python.


• We cannot use a keyword as a variable name,function name or
any other identifier. They are used to define the syntax and
structure of the Python language.
• In Python, keywords are case sensitive.
• There are 33 keywords in Python
• Identifiers:An identifier is a name given to entities like class,
functions, variables, etc. It helps to differentiate one entity from
another.
• An identifier is a name given to entities like class, functions,
variables, etc. It helps to differentiate one entity from another.

DAY 2:- BUIT CALCULATER USING PYTHON

8|Page
GUJARAT TECHNOLOGICAL UNIVERSITY

9|Page
GUJARAT TECHNOLOGICAL UNIVERSITY

➢ PERFORM TASK:-
10 | P a g e
GUJARAT TECHNOLOGICAL UNIVERSITY

11 | P a g e
GUJARAT TECHNOLOGICAL UNIVERSITY

12 | P a g e

You might also like