Prix bas
CHF64.80
Pas encore paru. Cet article sera disponible le 19.12.2024
Auteur
Dr. Rakesh Nayak, author of two text books, is currently a professor in the Department of Computer Science and Engineering at O. P. Jindal University, Raigarh, Chhattisgarh, India. He earned his Master's degree in Computer Applications from Indira Gandhi National Open University in the year 2007 and MTech in computer science and engineering from Acharya Nagarjuna University, Andhra Pradesh, India in 2010 and his PhD degree in Computer Science from Behrampur University, Odisha, India in 2013. Prior to joining the computer science department of O. P. Jindal University in January 2022, he worked in various capacities in different Engineering/MCA colleges. He has more than 22 years of teaching experience and has guided 11 MTech students. He has many publications in international journals to his credit.
Dr. Nishu Gupta is a senior member, IEEE. He is a postdoctoral fellow in the Smart Wireless Systems (SWS) Research Group at Norwegian University of Science and Technology (NTNU), located in Gjøvik, Norway. Before this position, he was an assistant professor in the Electronics and Communication Engineering department, College of Engineering and Technology, SRM Institute of Science and Technology, Chennai, India. He earned his PhD degree from Motilal Nehru National Institute of Technology Allahabad, Prayagraj, India, which is an Institute of National Importance as declared by the Govt. of India. He has authored and edited several books with international publishers such as Taylor & Francis, Springer, Wiley, Scrivener, among others. Dr. Nishu is on the editorial board of various International reputed journals and transactions. Dr. Nishu serves as an active reviewer in various highly reputed journals such as IEEE Transactions on ITS, IEEE Access, IET Communications and many more. He is a recipient of the Best Paper Presentation Award during an International Conference at Nanyang Technological University, Singapore. His research interests include Autonomous Vehicles, Edge Computing, Augmented Intelligence, Internet of Things, Internet of Vehicles, Deep Learning, Machine Learning, Ad-Hoc Networks, Vehicular Communication, Driving Efficiency, Cognitive Computing, and Human-Machine Interaction.
Texte du rabat
This text covers fundamentals of Python up to object-oriented concepts including regular expression, and applications in a single volume. It will an ideal text for senior undergraduate, graduate students, and professionals in the fields of electrical engineering, electronics and communication engineering, and computer engineering.
Résumé
The text focuses on the basics of Python programming fundamentals and introduction to present-day applications in technology and the upcoming state-of-art trends in a comprehensive manner. The text is based on Python 3.x and it covers the fundamentals of Python with object-oriented concepts having numerous worked-out examples. It provides a learning tool for the students of beginner level as well as for researchers of advanced level. Each chapter contains additional examples that explain the usage of methods/functions discussed in the chapter. It provides numerous programming examples along with their outputs.
The book:
Contenu
Dedication
Acknowledgements
About the Authors
Forewords
Preface
SECTION I: Python Fundamentals
Chapter 1- Interaction with Python
1.1 Introduction
1.2. Variables and Identifiers
1.2.1. How to Name Identifiers
1.2.2. Use of Descriptive Identifiers and Comments
1.2.3. Variable Types
1.2.3.1. Numeric Data types
1.2.3.2. None Data types
1.2.3.3. Sequence Data types
1.2.3.4. Set Data type
1.2.3.5. Mapping Data type
1.2.3.6. Array Datatype
1.3. Constant
1.4. Statement and Expression
1.5. Input statements
1.6. Output statements
1.7. Formatting Output statements
1.7.1. Escape Character
1.7.2. sep and end
1.7.3. String formatting with format()
1.7.4. Numbers formatting with format()
1.8. Comment Statement
Multiple Choice Questions
Descriptive Questions
Programming Questions
Solutions to Multiple Choice Questions
Chapter 2- Operators
2.1. Introduction
2.2. Types of Operators
2.2.1. Assignment Operator
2.2.2. Arithmetic Operators
2.2.2.1. Precedence of Arithmetic Operators
2.2.3. Relational Operators
2.2.4. Logical Operators
2.2.4.1. and Operator
2.2.4.2. or Operator
2.2.4.3. not Operator
2.2.5. Increment and Decrement Operators
2.2.6. Bitwise Operators
2.2.6.1. Bitwise AND operator (&)
2.2.6.2. Bitwise OR operator (|)
2.2.6.3. Bitwise XOR operator (^)
2.2.6.4. Bitwise Complement (~)
2.2.6.5. Bitwise Left Shift (>)
2.2.7. Membership Operators
2.2.8. Identity Operators
2.2.9. Precedence of all Operators
2.3. Type Casting
Additional Examples
Multiple Choice Questions
Descriptive Questions
Programming Questions
Solutions to Multiple Choice Questions
Chapter 3 -Control Structures
3.1. Introduction
3.2. Conditionals
3.2.1. Conditional if-else
3.2.2. Conditional if-elif-else
3.2.3. Nested if-elif-else statements.
3.2.4. Ternary Operator
3.3. Loops
3.3.1. While Loop
3.3.2. For Loop
3.3.2.1. The range () function
3.3.3. Continue, Break and Pass
3.3.3.1. Continue Statement
3.3.3.2. Break Statement
3.3.3.3. Pass Statemtn
3.3.4. Nested Loops
3.4. Looping through two lists
3.5. Iterator
Additional Examples
Multiple Choice Questions
Descriptive Questions
Programming Questions
Solutions to Multiple Choice Questions
Chapter 4 -String
4.1. Introduction
4.2. Strings
4.2.1. Creating List
4.2.1.1. Creating an Empty String
4.2.1.2. Creating a sting from numbers
4.2.1.3. Creating a string from list and Tuple
4.2.2. Accessing String
4.2.2.1. Membership in String
4.2.3. String Operations
4.2.3.1. Concatenation
4.2.3.2. Repetition
4.2.4. Character Encoding
4.2.5. String Functions and Methods
4.2.6. String Slicing
4.2.6.1. String Slicing with Negative Index
4.2.6.2. String Slicing with Step
4.2.6.3. String Slicing Default Index
Additional Examples
Multiple Choice Questions
Descriptive Questions
Programming Questions
Solutions to Multiple Choice Questions
CHAPTER 5- List & Tuple
5.1. Introduction
5.2. List
5.2.1. Creating List
5.2.1.1. Creating an Empty list
5.2.1.2. Creating a list from a string
5.4.1.3. Creating a list by range function
5.2.1.4. Creating a list from another list
5.2.2. List Operations
5.2.3. Accessing List
5.2.3.1. Membership in List
5.2.4. List Functions and Methods
5.2.5. List Slicing
5.2.5.1. List Slicing with Negative Index
5.2.5.2. List Slicing with Step
5.2.5.3. List Slicing Default Index
5.2.6. Differen…