[go: up one dir, main page]

0% found this document useful (0 votes)
12 views27 pages

Internship Report

Uploaded by

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

Internship Report

Uploaded by

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

A

INTERNSHIP PROJECT REPORT


ON
PYTHON WITH WEB DESIGN
Submitted by
KRISH PATEL

EN.NO: - 224550307035

Of

DIPLOMA ENGINEERING

In

COMPUTER ENGINEERING

Apollo Institute of Engineering and Technology (AIET)

Gujarat Technological University, Ahmedabad


[2023-24]

Apollo Institute of Engineering & Technology Ahmedabad


CERTIFICATE
This is to certify that the project report submitted along with the 15-day internship report on PYTHON
has been carried out by Krish Patel under my guidance in partial fulfillment for the Diploma in Computer Engineering of 3rd
Semester of Gujarat Technological University, Ahmadabad during the academic year 2023-24.

Internal Guide: Head of the Department:

Prof.Dharmesh Kokani Prof. Kavita Rathod


GUJARAT TECHNOLOGICAL UNIVERSITY

DECLARATION

I hereby declare that I have completed my fifteen days summer internship on web
design with python from 10 Oct 2023 to 23 Oct 2023 under the guidance of Heena
Patel. I have declare that I have worked with full dedication during these fifteen days
of training and my learning outcomes fulfill the requirements of training for the
3rdsem of Diploma of Computer Engineering, Institute of Apollo Institute of
Engineering and Technology, Ahmedabad.

Date : 24/8/2023 Krish Patel


(224550307035)
Completion Certificate
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 Internal guide and Head of Department Prof. Kavita Rathod whose
contribution in stimulating suggestions and encouragement, helped me to
coordinate the internship especially in drafting this report.
Also I appreciate the guidance given by the developer at Patel Web Solution, Heena Patel
as well as the panels especially for the internship that has advised me and gave guidance
at every momentof the internship.
ABSTRACT
The Python programming language is a versatile and dynamically
typed high-level programming language known for its simplicity,
readability, and extensive standard library. Created by Guido van
Rossum and first released in 1991, Python emphasizes code
readability and a clean syntax, which allows developers to express
concepts in fewer lines of code compared to languages like C++ or
Java.
Python's design philosophy emphasizes the importance of code
readability, leading to a significant use of whitespace indentation to
define code blocks. This readability not only aids in writing clear and
understandable code but also encourages collaboration and
maintainability. The language supports multiple programming
paradigms, including procedural, object-oriented, and functional
programming. It features automatic memory management and has a
dynamic type system, allowing variables to change types during
runtime. This flexibility can enhance development speed but also
requires careful handling to prevent runtime errors.
PYTHON INTERNSHIP REPORT

Personal Details –
Name : Krish Patel
Enrollment no. : 224550307035
College Name : Apollo Institute of Engineering and Tech.
Diploma : Computer Engineering
Semester : 3rd

Company Details

Company Name : Patel Web Solution


External Guide : Heena Patel
Training Duration : 10-8-2023 to 23-8-2023
INDEX
Index no. Task details Page
no.
1 Day 1 introduction and
information
2 Day 2 basic structure of html
3 Day 3 list,link,image in html
4 Day 4 CSS introduction
5 Day 5 CSS types
internal,external
6 Day 6 CSS
height,weight,margin,padding
7 Basic web design day 7
8 Day 8 python language
9 Day 9 data types
10 Day 11 loop & while loop
DAY 1

Introduction to HTML and CSS

What is HTML?

▪ HTML stands for Hyper Text Markup Language


▪ HTML is the standard markup language for creating Web pages
▪ HTML describes the structure of a Web page
▪ HTML consists of a series of elements
▪ HTML elements tell the browser how to display the content
▪ HTML elements label pieces of content such as "this is a heading", "this is a
paragraph", "this is a link", etc.
DAY 2
Basic Structure Of Html –

Output
DAY 3

list in html –

Output
Link In HTML –

Output –
DAY 4

CSS INTRODUCTION –

What is CSS?
CSS stands for Cascading Style Sheets
CSS describes how HTML elements are to be displayed on screen, paper,
or in other media
CSS saves a lot of work. It can control the layout of multiple web pages all
at once
External stylesheets are stored in CSS files

Why Use CSS?


CSS is used to define styles for your web pages, including the design, layout and
variations in display for different devices and screen sizes.
DAY 5
Inline Type -
Output –
DAY 6
Margin
Padding
Apollo Institute Of Engineering And Technology
DAY 7

Apollo Institute Of Engineering And Technology


)
Apollo Institute Of Engineering And Technology
Output
DAY 8 Python
language –

What is Python?
Python is a popular programming language. It was created by Guido van
Rossum, and released in 1991.

It is used for:

• web development (server-side),


• software development, mathematics, system scripting.

What can Python do?


• Python can be used on a server to create web applications.
• Python can be used alongside software to create workflows.
• Python can connect to database systems. It can also read and modify
files.
• Python can be used to handle big data and perform complex
mathematics.
• Python can be used for rapid prototyping, or for production-ready
software development.

Why Python?
• Python works on different platforms (Windows, Mac, Linux, Raspberry Pi,
etc).
• Python has a simple syntax similar to the English language.
• Python has syntax that allows developers to write programs with fewer
lines than some other programming languages.
• Python runs on an interpreter system, meaning that code can be
executed as soon as it is written. This means that prototyping can be
very quick.
• Python can be treated in a procedural way, an object-oriented way or a
functional way.
Day 9
Data type
Text type - str Nuberic - int,float,complex
Sequence type - list,tuple,range String ➢
Example datatype of variable – x = 5
print(type(x)) Day 11
############## Loop ##############

############## While Loop ##############

x = 1 # initialization

while x <= 5 : # Condition

print('Patel Web Solution',x)

x = x + 1 x += 1 # increament

x = 5 # initialization

while x >= 1 : # Condition

print('Patel Web Solution',x)

x = x - 1 x -= 1 # decreament
Python program –
x = int(input("Enter No. from one to three : "))

if x == 1:
print('One')
elif x == 2 :
print("Two")
elif x == 3:
print("Three")
else:
print("Plz, Refine your choise")

You might also like