Skip to main content

Command Palette

Search for a command to run...

Basic of Python and Data Types

Published
4 min read
Basic of Python and Data Types
U
Senior Associate with 4+ years of experience providing 24x7 technical support for the Projects. Skilled in incident and service request management using ServiceNow, with hands-on expertise in remote troubleshooting, user offboarding, asset handling, and cloud fundamentals. Proven track record of reducing system downtime and exceeding ticket resolution targets. ✅ Key Responsibilities & Achievements: 1. Delivered 24x7 IT support for R1RCM client, managing incidents and service requests using 2. ServiceNow with a focus on SLA compliance. 3. Collected and managed hardware (laptops/desktops) post-user termination, including device freezing, data retrieval, and secure return coordination. 4. Handled immediate termination requests by prioritizing email alerts, freezing devices, and disabling accounts to ensure data security. 5. Provided remote support using TeamViewer and ConnectWise, resolving hardware, software, and network issues across Windows and Linux systems. 6. Installed, configured, and updated software applications; managed VPN and remote access issues; and supported patch and security updates. 7. Collaborated with cross-functional IT teams to ensure seamless support and knowledge sharing. Maintained detailed documentation of technical issues and resolutions for audit and process improvement. ✅ Education: B.Tech (2018–2022) – Dr. A.P.J. Abdul Kalam Technical University (AKTU), Uttar Pradesh – 72% MBA – Lovely Professional University (LPU), Punjab – 68% ✅ Certifications & Skills: IT Service Management (ITSM): ServiceNow (Incident & Service Request Handling). Cloud: Aws/Azure. Remote Support Tools: TeamViewer, Connect Wise Operating Systems: Windows, Linux. User Off boarding & Security: Device freeze, data retrieval, account deactivation, hardware collection. Asset Management: Laptop/Desktop tracking, return coordination, inventory updates. Email & Communication Tools: Outlook, Email prioritization for immediate terminations. Troubleshooting & Maintenance: Hardware/software diagnostics, system performance tuning. Networking: VPN support, remote access troubleshooting, connectivity issue resolution. Software Management: Installation, configuration, patching, and updates. Documentation: Ticket resolution tracking, knowledge base contribution, audit logs. Collaboration: Cross-team coordination, live call support, escalation handling.

Python:

Python is a high-level, interpreted programming language known for its readability and versatility. Created by Guido van Rossum and first released in 1991, Python has since gained widespread popularity for its simplicity and extensive libraries. Its syntax emphasizes code readability, making it accessible for beginners and experienced developers alike.

Python supports multiple programming paradigms, including procedural, object-oriented, and functional programming. Its dynamic typing and automatic memory management contribute to faster development cycles. Python's extensive standard library covers areas such as networking, databases, file systems, and more, reducing the need for developers to write code from scratch.

The language is widely used in various domains, including web development, data science, artificial intelligence, scientific computing, and automation. Popular frameworks like Django and Flask simplify web development, while libraries like NumPy, Pandas, and TensorFlow excel in data manipulation, analysis, and machine learning.

Python's open-source nature encourages collaboration and community-driven development. Its interpreter is available for multiple platforms, fostering cross-platform compatibility. The language's versatility, readability, and robust ecosystem make it a go-to choice for developers seeking efficiency and flexibility in their projects. Whether creating web applications, analyzing data, or building machine learning models, Python continues to play a pivotal role in shaping the modern software landscape.

Python Data Types:

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 classes and variables are instances (objects) of these classes.

A data type in programming defines the type of data a variable can hold and the operations that can be performed on it. It specifies the interpretation of binary data stored in memory. Common data types include integers, floating-point numbers, characters, and booleans. Programming languages use data types to ensure proper handling of data and facilitate efficient execution of operations. Different data types have distinct characteristics, such as size, range, and precision, influencing how they are stored and manipulated in a computer's memory. Choosing appropriate data types is crucial for writing efficient and error-free code.

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 has the following data types built-in by default: Numeric(Integer, complex, float), Sequential(string,lists, tuples), Boolean, Set, Dictionaries, etc

Python Operators:

Python divides the operators in the following groups:

  • Arithmetic operators

  • Assignment operators

  • Comparison operators

  • Logical operators

  • Identity operators

  • Membership operators

  • Bitwise operators

  • Python Arithmetic Operators:

Arithmetic operators are used with numeric values to perform common mathematical operations

  • Python Assignment Operators:

Assignment operators are used to assign values to variables:

  • Python Comparison Operators:

Comparison operators are used to compare two values.

  • Python Logical Operators:

Logical operators are used to combine conditional statements

  • Python Identity Operators:

Identity operators are used to compare the objects, not if they are equal, but if they are actually the same object, with the same memory location.

  • Python Membership Operators:

Membership operators are used to test if a sequence is presented in an object:

  • Python Bitwise Operators:

Bitwise operators are used to compare (binary) numbers.

Python Conditions and If statements:

Python supports the usual logical conditions from mathematics:

  • Equals: a == b

  • Not Equals: a != b

  • Less than: a < b

  • Less than or equal to: a <= b

  • Greater than: a > b

  • Greater than or equal to: a >= b

These conditions can be used in several ways, most commonly in "if statements" and loops.

An "if statement" is written by using the if keyword.

Python Loops:

Python has two primitive loop commands:

  • while loops

  • for loops

  • while Loop:

With the while loop we can execute a set of statements as long as a condition is true.

  • For Loops:

A for loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string).

This is less like the for keyword in other programming languages, and works more like an iterator method as found in other object-orientated programming languages.

Tasks:

Task1: Writh the program to print the we are learning in python.

Task2: Writh the program to print the Add to numbers.

Task3: Writh the program to Find the Largest Number Among two Numbers.

Task4: Writh the program to Find the Largest Number Among three Numbers.

Task5: Writh the program to User input, Which Cloud you are using.

Task6: Writh the program to Simple Calculator.

Task7: Writh the program to Print the Tables of 2.

Task8: Writh the program to Print 1 to 10 Numbers.

Task9: Writh the program to Print Booms every 10 Seconds.

Now We have completed basic Python programming. Advance Python programming we will start the next Blog!

More from this blog

DevopsWithUday

55 posts

Senior Associate with 4+ years of experience providing 24x7 technical support for the Projects. Skilled in incident and service request management using ServiceNow, with hands-on expertise in remote troubleshooting, user offboarding, asset handling, and cloud fundamentals. Proven track record of reducing system downtime and exceeding ticket resolution targets