7 TH SEMfinal Project 2027253
7 TH SEMfinal Project 2027253
7 TH SEMfinal Project 2027253
ON
HOTEL MANAGEMENT SYSTEM
Project-I
I, Ankit Singh hereby declare that the report of the project entitled “Hotel
Management System” has not presented as a part of any other academic work to
Mohali, affiliated to I.K. Gujral Punjab Technical University, Jalandhar, for the
i
ACKNOWLEDGEMENT
It gives me great pleasure to deliver this report on the Project-I, I worked on for my
B. Tech in Artificial Intelligence & Machine Learning final year, which was titled
“Hotel Management System”. I am grateful to my university for presenting me with
such a wonderful and challenging opportunity. I also want to convey my sincere
gratitude to all coordinators for their unfailing support and encouragement.
I am extremely thankful to Dr. Sahil Verma, Dean of Artificial Intelligence &
Machine Learning at Chandigarh Engineering College Jhanjeri, Mohali (Punjab)
for valuable suggestions and heartiest co-operation.
I am also grateful to the management of the institute, Dr. Vinod Kumar, Director
Engineering, and Dr. Anupam Shar, Director Academics, for giving me the chance
to acquire the information. I am also appreciative of all of my faculty members,
who have instructed me throughout my degree.
Ankit Singh
ii
List of Figures
iii
CONTENTS
Declaration ii
Acknowledgement iii
List of Figures iv
2.1 Variable
2.2 String
iv
CHAPTER 3TUPLE AND LIST 19-33
3.1 Tuple
3.2 List
4.1 Loops
4.3 Function
REFERENCES 64
v
2. INTRODUCTION
This Chapter involves detailed introduction about training and the complete
study of all the technologies that are taught in this time period with
information of projects also.
Often, programmers fall in love with Python because of the increased productivity it provides.
Since there is no compilation step, the edit-test-debug cycle is incredibly fast. Debugging Python
programs is easy: a bug or bad input will never cause a segmentation fault. Instead, when the
interpreter discovers an error, it raises an exception. When the program doesn't catch the
exception, the interpreter prints a stack trace. A source level debugger allows inspection of local
and global variables, evaluation of arbitrary expressions, setting breakpoints, stepping through the
code a line at a time, and so on. The debugger is written in Python itself, testifying to Python's
introspective power. On the other hand, often the quickest way to debug a program is to add a few
print statements to the source: the fast edit-test-debug cycle makes this simple approach very
effective.
1
• Python is Interpreted − Python is processed at runtime by the interpreter. You
do not need to compile your program before executing it. This is similar to PERL
and PHP.
• Python is Interactive − You can actually sit at a Python prompt and interact with
the interpreter directly to write your programs.
• Python is Object-Oriented − Python supports Object-Oriented style or technique
of programming that encapsulates code within objects.
• Python is a Beginner's Language − Python is a great language for the beginner-
level programmers and supports the development of a wide range of applications
from simple text processing to WWW browsers to games.
Python Features
Python's features include −
The scripting language is referred to perform the task based on automating a repeated task. It
includes same types of steps while implementing the procedure or program. It reduces time and
cuts the costs further. The scripting languages are interpreted language instead of a compiled
language. The name of few scripting languages is Perl, Visual Basic, JavaScript, Python, Unix
Shell Scripts, ECMAScript, and Bash etc.
3
o Scripting language doesn't require the memory to run the program.
o Less line code requires completing the task as compared to other languages.
An object-oriented paradigm is to design the program using classes and objects. The object is
related to real-word entities such as book, house, pencil, etc. The oops concept focuses on writing
the reusable code. It is a widespread technique to solve the problem by creating objects.
o Class
o Object
o Method
o Inheritance
o Polymorphism
o Data Abstraction
o Encapsulation
. Guido van Rossum was reading the script of a popular BBC comedy series "Monty Python's
Flying Circus". It was late on-air 1970s.
4
Van Rossum wanted to select a name which unique, sort, and little-bit mysterious. So, he decided
to select naming Python after the "Monty Python's Flying Circus" for their newly created
programming language.
The comedy series was creative and well random. It talks about everything. Thus, it is slow and
unpredictable, which made it very interesting.
Python is also versatile and widely used in every technical field, such as Machine Learning
, Artificial Intelligence
, Web Development, Mobile Application
, Desktop Application, Scientific Calculation, etc.
5
3 DATATYPES AND OPERATORS
Data types are the classification or categorization of data items. It represents the kind of value
that tells what operations can be performed on a particular data. Since everything is an object in
Python programming, data types are actually classes and variables are instance (object) of these
classes.
Python Operators in general are used to perform operations on values and variables. These are
standard symbols used for the purpose of logical and arithmetic operations. In this article, we will
look into different types of Python operators.
3.1 Variables
Variable is a name that is used to refer to memory location. Python variable is also known
as an identifier and used to hold value.
In Python, we don't need to specify the type of variable because Python is a infer language
and smart enough to get variable type.
Variable names can be a group of both the letters and digits, but they have to begin with a
letter or an underscore.
It is recommended to use lowercase letters for the variable name. Rahul and rahul both are
two different variables.
Identifier Naming
Variables are the example of identifiers. An Identifier is used to identify the literals used in
the program. The rules to name an identifier are given below.
Python does not bind us to declare a variable before using it in the application. It allows us
to create a variable at the required time.
We don't need to declare explicitly variable in Python. When we assign any value to the
variable, that variable is declared automatically.
Object References
It is necessary to understand how the Python interpreter works when we declare a variable.
The process of treating variables is somewhat different from many other programming
languages.
Python is the highly object-oriented programming language; that's why every data item
belongs to a specific type of class. Consider the following example.
1. print("John")
Output:
John
The Python object creates an integer object and displays it to the console. In the above print
statement, we have created a string object. Let's check the type of it using the Python built-
in type() function.
1. type("John")
7
Output:
<class 'str'>
In Python, variables are a symbolic name that is a reference or pointer to an object. The
variables are used to denote objects by that name.
1. a = 50
a = 50
b=a
The variable b refers to the same object that a points to because Python does not create
another object.
Let's assign the new value to b. Now both variables will refer to the different objects.
a = 50
b =100
8
Python manages memory efficiently if we assign the same variable to two different values.
3.2 String
Till now, we have discussed numbers as the standard data-types in Python. In this section
of the tutorial, we will discuss the most popular data type in Python, i.e., string.
Python string is the collection of the characters surrounded by single quotes, double quotes,
or triple quotes. The computer does not understand the characters; internally, it stores
manipulated character as the combination of the 0's and 1's.
Each character is encoded in the ASCII or Unicode character. So we can say that Python
strings are also called the collection of Unicode characters.
In Python, strings can be created by enclosing the character or the sequence of characters
in the quotes. Python allows us to use single quotes, double quotes, or triple quotes to create
the string.
Syntax:
Here, if we check the type of the variable str using a Python script
9
1. print(type(str)), then it will print a string (str).
In Python, strings are treated as the sequence of characters, which means that Python
doesn't support the character data-type; instead, a single character written as 'p' is treated
as the string of length.
3. print(str1)
4. #Using double quotes
7.
8. #Using triple quotes
11. docstring'''
12. print(str3)
Output:
Hello Python
Hello Python
10
represent the multiline or
docstring
As we know that strings are immutable. We cannot delete or remove the characters from
the string. But we can delete the entire string using the del keyword
1. str = "JAVATPOINT"
2. del str[1]
Output:
1. str1 = "JAVATPOINT"
2. del str1
3. print(str1)
Output:
String Operators
11
3.3 Python operator.
The operator can be defined as a symbol which is responsible for a particular operation
between two operands. Operators are the pillars of a program on which the logic is built in
a specific programming language. Python provides a variety of operators, which are
described as follows.
o Arithmetic operators
12
o Comparison operators
o Assignment Operators
o Logical Operators
o Bitwise Operators
o Membership Operators
o Identity Operator
Arithmetic Operators
Arithmetic operators are used to perform arithmetic operations between two operands. It
includes + (addition), - (subtraction), *(multiplication), /(divide), %(reminder), //(floor
division), and exponent (**) operators. Consider the following table for a detailed
explanationofarithmeticoperators.
Comparison operator
13
Comparison operators are used to comparing the value of the two operands and returns
Boolean true or false accordingly. The comparison operators are described in the following
table.
Assignment Operators
The assignment operators are used to assign the value of the right expression to the left
operand. The assignment operators are described in the following table.
14
Bitwise Operators
The bitwise operators perform bit by bit operation on the values of the two operands.
Consider the following example.
For example,
1. if a = 7
2. b=6
15
4. binary (b) = 0110
8. ~ a = 1000
Logical Operators
The logical operators are used primarily in the expression evaluation to make a decision.
Python supports the following logical operators.
16
Membership Operators
Python membership operators are used to check the membership of value inside a Python
data structure. If the value is present in the data structure, then the resulting value is true
otherwise it returns false.
Identity Operators
The identity operators are used to decide whether an element certain class or type.
Operator Precedence
17
The precedence of the operators is essential to find out since it enables us to know which operator
should be evaluated first. The precedence table of the operators in Python is given below.
18
4 TUPLE AND LISTS
4.1 TUPLE
A tuple is a collection of objects which ordered and immutable. Tuples are sequences,
just like lists. The differences between tuples and lists are, the tuples cannot be
changed unlike lists and tuples use parentheses, whereas lists use square brackets.
To write a tuple containing a single value you have to include a comma, even though
there is only one value −
tup1 = (50,);
Like string indices, tuple indices start at 0, and they can be sliced, concatenated, and so
on.
#!/usr/bin/python
Updating Tuples
Tuples are immutable which means you cannot update or change the values of tuple
elements. You are able to take portions of existing tuples to create new tuples as the
following example demonstrates −
#!/usr/bin/python
To explicitly remove an entire tuple, just use the del statement. For example −
20
#!/usr/bin/python
This produces the following result. Note an exception raised, this is because after del
tup tuple does not exist any more −
('physics', 'chemistry', 1997, 2000)
After deleting tup :
Traceback (most recent call last):
File "test.py", line 9, in <module>
print tup;
NameError: name 'tup' is not defined
In fact, tuples respond to all of the general sequence operations we used on strings in
the prior chapter
21
No Enclosing Delimiters
Any set of multiple objects, comma-separated, written without identifying symbols, i.e.,
brackets for lists, parentheses for tuples, etc., default to tuples, as indicated in these
short examples −
#!/usr/bin/python
1 cmp(tuple1, tuple2)
2 len(tuple)
3 max(tuple)
4 min(tuple)
22
Returns item from the tuple with min value.
5 tuple(seq)
4.2 LISTS
The most basic data structure in Python is the sequence. Each element of a sequence is
assigned a number - its position or index. The first index is zero, the second index is one,
and so forth.
Python has six built-in types of sequences, but the most common ones are lists and
tuples, which we would see in this tutorial.
There are certain things you can do with all sequence types. These operations include
indexing, slicing, adding, multiplying, and checking for membership. In addition, Python
has built-in functions for finding the length of a sequence and for finding its largest and
smallest elements.
Python Lists
The list is a most versatile datatype available in Python which can be written as a list of
comma-separated values (items) between square brackets. Important thing about a list
is that items in a list need not be of the same type.
23
Accessing Values in Lists
To access values in lists, use the square brackets for slicing along with the index or
indices to obtain value available at that index. For example
#!/usr/bin/python
Updating Lists
You can update single or multiple elements of lists by giving the slice on the left-hand
side of the assignment operator, and you can add to elements in a list with the append()
method. For example −
#!/usr/bin/python
24
When the above code is executed, it produces the following result −
Value available at index 2 :
1997
New value available at index 2 :
2001
#!/usr/bin/python
In fact, lists respond to all of the general sequence operations we used on strings in the
prior chapter.
25
Indexing, Slicing, and Matrixes
Because lists are sequences, indexing and slicing work the same way for lists as they
do for strings.
1 cmp(list1, list2)
2 len(list)
3 max(list)
4 min(list)
5 list(seq)
26
Python includes following list methods
1 list.append(obj)
2 list.count(obj)
3 list.extend(seq)
4 list.index(obj)
5 list.insert(index, obj)
6 list.pop(obj=list[-1])
7 list.remove(obj)
8 list.reverse()
27
Reverses objects of list in place
9 list.sort([func])
4.3 DICTIONARY
Each key is separated from its value by a colon (:), the items are separated by commas,
and the whole thing is enclosed in curly braces. An empty dictionary without any items
is written with just two curly braces, like this: {}.
Keys are unique within a dictionary while values may not be. The values of a dictionary
can be of any type, but the keys must be of an immutable data type such as strings,
numbers, or tuples.
#!/usr/bin/python
If we attempt to access a data item with a key, which is not part of the dictionary, we
get an error as follows −
28
#!/usr/bin/python
Updating Dictionary
You can update a dictionary by adding a new entry or a key-value pair, modifying an
existing entry, or deleting an existing entry as shown below in the simple example
#!/usr/bin/python
29
You can either remove individual dictionary elements or clear the entire contents of a
dictionary. You can also delete entire dictionary in a single operation.
To explicitly remove an entire dictionary, just use the del statement. Following is a
simple example −
#!/usr/bin/python
This produces the following result. Note that an exception is raised because after del
dict dictionary does not exist any more −
dict['Age']:
Traceback (most recent call last):
File "test.py", line 8, in <module>
print "dict['Age']: ", dict['Age'];
TypeError: 'type' object is unsubscriptable
30
(a) More than one entry per key not allowed. Which means no duplicate key is allowed.
When duplicate keys encountered during assignment, the last assignment wins. For
example −
#!/usr/bin/python
(b) Keys must be immutable. Which means you can use strings, numbers or tuples as
dictionary keys but something like ['key'] is not allowed. Following is a simple example
−
#!/usr/bin/python
31
E Function with Description
1 cmp(dict1, dict2)
2 len(dict)
Gives the total length of the dictionary. This would be equal to the number
of items in the dictionary.
3 str(dict)
4 type(variable)
Returns the type of the passed variable. If passed variable is dictionary, then
it would return a dictionary type.
1 dict.clear()
2 dict.copy()
3 dict.fromkeys()
Create a new dictionary with keys from seq and values set to value.
32
4 dict.get(key, default=None)
5 dict.has_key(key)
6 dict.items()
7 dict.keys()
8 dict.setdefault(key, default=None)
Similar to get(), but will set dict[key]=default if key is not already in dict
9 dict.update(dict2)
10 dict.values()
33
5 LOOP &CONDITIONAL STATEMENTS
5.1 LOOPS
Programming languages provide various control structures that allow for more
complicated execution paths.
34
1 while loop
2 for loop
3 nested loops
You can use one or more loop inside any another while, for or do..while
loop.
Python supports the following control statements. Click the following links to check
their detail.
1 break statement
Terminates the loop statement and transfers execution to the statement immediately
following the loop.
2 continue statement
35
Causes the loop to skip the remainder of its body and immediately retest its condition
prior to reiterating.
3 pass statement
The pass statement in Python is used when a statement is required syntactically but
you do not want any command or code to execute.
The else statement is an optional statement and there could be at most only
one else statement following if.
Syntax
The syntax of the if...else statement is −
if expression:
statement(s)
else:
statement(s)
Flow Diagram
36
Example
#!/usr/bin/python
var1 = 100
if var1:
print "1 - Got a true expression value"
print var1
else:
print "1 - Got a false expression value"
print var1
var2 = 0
if var2:
print "2 - Got a true expression value"
37
print var2
else:
print "2 - Got a false expression value"
print var2
Similar to the else, the elif statement is optional. However, unlike else, for which there
can be at most one statement, there can be an arbitrary number of elif statements
following an if.
syntax
if expression1:
statement(s)
elif expression2:
statement(s)
elif expression3:
statement(s)
else:
38
statement(s)
Core Python does not provide switch or case statements as in other languages, but we
can use if..elif...statements to simulate switch case as follows −
Example
#!/usr/bin/python
var = 100
if var == 200:
print "1 - Got a true expression value"
print var
elif var == 150:
print "2 - Got a true expression value"
print var
elif var == 100:
print "3 - Got a true expression value"
print var
else:
print "4 - Got a false expression value"
print var
5.3 FUNCTION
39
A function is a block of organized, reusable code that is used to perform a single, related
action. Functions provide better modularity for your application and a high degree of
code reusing.
As you already know, Python gives you many built-in functions like print(), etc. but you
can also create your own functions. These functions are called user-defined functions.
Defining a Function
You can define functions to provide the required functionality. Here are simple rules to
define a function in Python.
• Function blocks begin with the keyword def followed by the function name
and parentheses ( ( ) ).
• Any input parameters or arguments should be placed within these
parentheses. You can also define parameters inside these parentheses.
• The first statement of a function can be an optional statement - the
documentation string of the function or docstring.
• The code block within every function starts with a colon (:) and is indented.
• The statement return [expression] exits a function, optionally passing back
an expression to the caller. A return statement with no arguments is the
same as return None.
Syntax
def functionname( parameters ):
"function_docstring"
function_suite
return [expression]
By default, parameters have a positional behavior and you need to inform them in the
same order that they were defined.
Example
40
The following function takes a string as input parameter and prints it on standard
screen.
Calling a Function
Defining a function only gives it a name, specifies the parameters that are to be included
in the function and structures the blocks of code.
Once the basic structure of a function is finalized, you can execute it by calling it from
another function or directly from the Python prompt. Following is the example to call
printme() function −
#!/usr/bin/python
41
Again second call to the same function
#!/usr/bin/python
Here, we are maintaining reference of the passed object and appending values in the
same object. So, this would produce the following result −
Values inside the function: [10, 20, 30, [1, 2, 3, 4]]
Values outside the function: [10, 20, 30, [1, 2, 3, 4]]
There is one more example where argument is being passed by reference and the
reference is being overwritten inside the called function.
42
#!/usr/bin/python
The parameter mylist is local to the function changeme. Changing mylist within the
function does not affect mylist. The function accomplishes nothing and finally this
would produce the following result −
Values inside the function: [1, 2, 3, 4]
Values outside the function: [10, 20, 30]
Function Arguments
You can call a function by using the following types of formal arguments −
• Required arguments
• Keyword arguments
• Default arguments
• Variable-length arguments
43
Required arguments
Required arguments are the arguments passed to a function in correct positional order.
Here, the number of arguments in the function call should match exactly with the
function definition.
To call the function printme(), you definitely need to pass one argument, otherwise it
gives a syntax error as follows −
Keyword arguments
Keyword arguments are related to the function calls. When you use keyword arguments
in a function call, the caller identifies the arguments by the parameter name.
This allows you to skip arguments or place them out of order because the Python
interpreter is able to use the keywords provided to match the values with parameters.
You can also make keyword calls to the printme() function in the following ways −
#!/usr/bin/python
44
The following example gives more clear picture. Note that the order of parameters does
not matter.
#!/usr/bin/python
Default arguments
A default argument is an argument that assumes a default value if a value is not
provided in the function call for that argument. The following example gives an idea on
default arguments, it prints default age if it is not passed −
#!/usr/bin/python
45
print "Age ", age
return;
An asterisk (*) is placed before the variable name that holds the values of all
nonkeyword variable arguments. This tuple remains empty if no additional arguments
are specified during the function call. Following is a simple example −
#!/usr/bin/python
46
# Function definition is here
def printinfo( arg1, *vartuple ):
"This prints a variable passed arguments"
print "Output is: "
print arg1
for var in vartuple:
print var
return;
All the above examples are not returning any value. You can return a value from a
function as follows −
#!/usr/bin/python
47
# Function definition is here
def sum( arg1, arg2 ):
# Add both the parameters and return them."
total = arg1 + arg2
print "Inside the function : ", total
return total;
48
7. INDUSTRIAL TRAINING WORK UNDERTAKEN
Hotel management system is a Real time management system made with the
help of tkinter library of python that can be used by any to hotel to manage its
all the services. The main purpose behind creating this project to help
the hotel in managing all the activities in hotel like reserve a room and to
manage the staff and check the availability of the room . A hotel always have
to take care of all its services which is not possible manually. It is very difficult
to keep the things on check. So this project helps in managing all the services
49
related to hotel . [11:15, 12/3/2022] Ankit Aryan: Hotel Management System
is an easy script that is created in Python programming language, This system
teaches you how you can manage a hotel, restaurant, etc. So let’s begin; This
Script has 5 modules-
The first one is the main module which is used to control all the other modules
given in the script.
Second one is the “Customer Information” module which displayes the data
or the information of the customer.
Third one is the “Food Purchased” module which displayes the list of food
items that was ordered by the customer.
Fourth one is the “Room Rent” module which displayes the type of room is to
rent by the customer .
Fifth and the last one is the “Hotel Bill” module which is this module
displayed the total purchased of the customer.
Now, let’s see the coding part of the “hotel management system project using
python with source code”.
At last, after all these calculations the user can know about their total cost of
staying easily. In this feature, the system provides his/her details, with the
room number, room rent, food, laundry and games bill. The total sum is
displayed to the users with some additional charges. This simple console
based Hotel Management system provides the simplest management of hotel
service and transaction. In short, this projects mainly focus on adding and
50
calculating results. There’s no external database connection file used in this
mini project to save user’s data permanently.
This whole project is built using the Windows 10 operation system and the
coding part is done on visual studio code which provides lot of features and
faster development tools. This software is widely used for developing web
projects as it has lot of extensions like syntax highlighter, auto correction,
51
and intelligence also. During development only we have to install python 3.6
version and import the library of python tkinter and visual studio code.
Minimum Requirements
• A 2-GB RAM
Recommended Requirements
• 3.3 gigahertz (GHz) or faster 64-bit dual core processor with SSE2 instruction set
52
Running model-driven apps on a computer that has less than the
recommended requirements may result in inadequate performance.
Additionally, satisfactory
The IDE often consists of a source code editor, debugger, compiler, and
designer, which all are accessed through a single interface. On top of that
different IDEs offer features such as auto code completion and syntax
highlighting to speed up the development process. Combining all of these
tools in one software application enables the developer to complete multiple
different tasks in one interface while identifying and minimizing coding
mistakes and typos on the fly.
Visual Studio Code text editor is used for creating the whole project
because it allows us to write code more and more fast with lot of
helping and awesome extension
53
6 PROJECT WORK
This Chapter involves detailed introduction about major project problem, objectives,
Methodology and flow charts. The whole information about the working and practical
implementation of the website including the system design with all the flowchart are shown
below
• 6.2 Objectives
At last, after all these calculations the user can know about their total cost of staying, Food
eaten, and also including extra activities such as laundry bills, Game bills very easily. In this
feature, the system provides his/her details such as name, address, mobile no. , etc. Along
with her/his Room number, Room rent, Food was eaten, laundry, and games bill too. The
total sum is displayed to the users with some additional charges like tips given etc. This
simple console-based Hotel Management system project in Python provides the effective
and easy management of hotel service and transactions. In short, this article mainly focuses
on saving time as well as money by simply calculating the bill amount on the basis of user
expenditures. There’s no external database file used in this mini project to save users’ data
permanently but you can use it if you want to.
54
In order to run the Program/Script make sure you have installed Python on your PC. This is
a simple Console Based system, specially written for beginners and when you learn it
completely you can add more modules manually based on your business.
Project title “Hotel Management” (a project for keeping customers record and also calculate
customer bill slip and managers salary) The name of project is “Hotel Management”. The
objective of the project is to computerize the system of the hotel. “Hotel Management” is the
project not only keeps the record of various people like customers, manager etc. but as well as it
reduces the extensive paper work in the present system. It wills maker the system more versatile
and user friendly. It also calculates the proper billing slip of high level and middle level
customers. This project is based on description about the structure of HOTEL MANAGEMENT
SYSTEM .The project contains:
Many economists have often described ‘Hotel Business’ as unique and different from much
other business. Hotel is selling both goods and services. It not only provides both tangible
intangible services, but one of its unusual characteristic is also that it is one of the very few
places where production and consumption occur simultaneously; for example, ordering
subsequent preparation,services and consumption of food items.Both the products and services
are offered on credit transaction .no other business allows the customer an immediate line of
credit, for example, the moment he registers ,his credit purchase starts with the room and a
sequence of financial charges throughout the facilities without immediately paying for them at
the ‘point of purchase’. For example, purchase of food in restaurant, drinks in bar valet
services,etc. no other business offers as varied a range of services and products at the same place
as hotel business. Each hotel must offer lodging, food and protection to their guest and assume a
liability for guest property, provide a high standard of hygiene, cleanliness and sanitation and
55
should confirm to the minimum requirements of the state regarding safe hotel construction such
as height of building, municipal-by-laws, fire and safety standard so no
56
Fig 6.3.1 (Hotel Management flow charts)
57
Start
Login
Search
Check If Confirm
available Booking
Room
store
information
End Process
58
Fig 6.3.2 ( Methodlogy and flowcharts)
CODE
59
Fig 6.4.2(CODE)
60
7. RESULT AND DESICUSSION
Python development does not about ―know it all, it’s about being able to
adapt your knowledge to project requirements. There is a fast track to
becoming good in this industry; the road to success is paved with hard work,
dedication, talent, and enough learning material. Sometimes it happens that
the rooms get booked soon when one visits the place therefore user can make
advance booking using this system. It saves user time in search of rooms.
The system is useful as it calculates an exact cost for requested number of
days. It saves organization resources and expenses. This system is effective
and saves time and cost of users. Easy registration.
7.1 Screen
61
Fig 7.1.2 (shots of runing project)
62
CONCLUSION AND FUTURE SCOPE
The entire project has been developed and deployed as per the requirements stated by the
user, it is found to be bug free as per the testing standards that are implemented. Any
specification untraced errors will be concentrated in the coming versions, which are planned to
be developed in near future.The system at present does not take care of the money payment
methods, as the consolidated constructs need SSL standards and are critically to be initiated in
the first face, the application of the credit card transactions is applied as a developmental phase
in the coming
days. The system needs more elaborative technicality for its inception and evolution. At last,
after all these calculations the user can know about their total cost of staying easily. In this
feature, the system provides his/her details, with the room number, room rent, food, laundry and
games bill. The total sum is displayed to the users with some additional charges. This simple
console based Hotel Management system provides the simplest management of hotel service
and transaction. In short, this projects mainly focus on adding and calculating results. There’s no
external database connection file used in this mini project to save user’s data permanently
63
FUTURE SCOPES
One can also join this course because of its large scope in other countries also. Students wish to
do this course to make their career in abroad countries. With the increasing globalization, the
In hotel management and catering field, one can achieve a long term career in life.It is very
demanding profession in abroad. Through this course, you can join government and non-
government sectors.
There are a large number of degree/diploma/certificate courses which many institutes offer. You
can have a look at this link. It is very important to keep in mind the institute from where you are
pursuing these courses and the placement opportunities they provide. The Hotel management
Industry is not looking for scholars, but is looking for professionals who are smart and have
extremely great interpersonal and communication skills. Look for an institute which will garner
these ski
64
REFERENCES
[1]. Python GUI Programming with Tkinter: Develop responsive and powerful GUI
applications with Tkinter AD Moore.Python
and Tkinter programming John Grayson Manning publications Co. Greenwich, 2000
[2]. T. Berners-Lee, Web Issues, 1998.
[3]. Design and Implementation of Hotel Room Management System Wei Wei School of
Computer Science and Engineering,
Xi'an University of Technology.
[4]. V. DeBolt, Mastering Integrating python and tkinter, ISBN: 978-0-470-09754-0,
[5]. Python GUI Programming with Tkinter: Develop responsive and powerful GUI
applications with Tkinter AD Moore.Python
and Tkinter programming John Grayson Manning publications Co. Greenwich, 2000
[5]"Python Hotel Management System with Source Code" by CodeWithHarry: This is a
video tutorial that shows you how to create a hotel management system using Python
tkinter. The tutorial covers topics such as creating a GUI, connecting to a database, and
implementing various features.
[6] "Hotel Management System using Python Tkinter" by Programmers Point: This is a
tutorial that teaches you how to create a hotel management system using Python tkinter.
The tutorial includes features such as room booking, room availability, and room
management.
[7] Hotel Management System using ptyhon:. You can find the source code and tutorial
here: https://github.com/akashp1712/hotel-management-system-flask
[8] Automate the Boring Stuff with Python by Al Sweigart -
https://automatetheboringstuff.com/
[9] Python Weekly Newsletter - https://www.pythonweekly.com/
[10] Python.org - https://www.python.org/
65
66