Internship Report
Internship Report
EN.NO: - 224550307035
Of
DIPLOMA ENGINEERING
In
COMPUTER ENGINEERING
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.
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
What is 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
What is Python?
Python is a popular programming language. It was created by Guido van
Rossum, and released in 1991.
It is used for:
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 ##############
x = 1 # initialization
x = x + 1 x += 1 # increament
x = 5 # initialization
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")