Skip to main content

Command Palette

Search for a command to run...

Advance Python Concept

Updated
3 min read
Advance Python Concept
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.

Data Structures:

Data Structures are a way of organizing data so that it can be accessed more efficiently depending upon the situation. Data Structures are fundamentals of any programming language around which a program is built. Python helps to learn the fundamental of these data structures in a simpler way as compared to other programming languages.

  • Lists Python Lists are just like the arrays, declared in other languages which is an ordered collection of data. It is very flexible as the items in a list do not need to be of the same type

  • Tuple Python Tuple is a collection of Python objects much like a list but Tuples are immutable in nature i.e. the elements in the tuple cannot be added or removed once created. Just like a List, a Tuple can also contain elements of various types.

  • Dictionary Python dictionary is like hash tables in any other language with the time complexity of O(1). It is an unordered collection of data values, used to store data values like a map, which, unlike other Data Types that hold only a single value as an element, Dictionary holds the key:value pair. Key-value is provided in the dictionary to make it more optimized.

Difference between List, Tuple and set:

  • Mutability:

- List: Mutable, meaning you can modify its elements (add, remove, or change).

- Tuple: Immutable, once created, its elements cannot be changed.

- Set: Mutable, but each element must be unique, and the set itself is unordered.

  • Syntax:

- List: Defined using square brackets [].

- Tuple: Defined using parentheses ().

- Set: Defined using curly braces {}.

  • Order:

- List: Ordered, elements are indexed and maintain the order in which they were added.

- Tuple: Ordered, similar to lists, elements have a specific order.

- Set: Unordered, elements have no specific order.

  • Duplicates:

- List: Allows duplicate elements.

- Tuple: Allows duplicate elements.

- Set: Does not allow duplicate elements.

  • Use Cases:

- List: Suitable for sequences where the order and duplication of elements matter, and you need to modify the sequence.

- Tuple: Useful when the data should not be modified after creation and order is important.

- Set: Ideal for tasks that involve checking membership and ensuring uniqueness of elements.

# List
my_list = [1, 2, 3, 3, 4]
print(my_list)  # Output: [1, 2, 3, 3, 4]

# Tuple
my_tuple = (1, 2, 3, 3, 4)
print(my_tuple)  # Output: (1, 2, 3, 3, 4)

# Set
my_set = {1, 2, 3, 3, 4}
print(my_set)  # Output: {1, 2, 3, 4}

Tasks:

Task1:

If you have a list ( ["AWS Cloud", "Azure Cloud"]). Add the "Google Cloud" after that "Azure Cloud".

Task2:

If you have a list ( ["AWS Cloud", "Azure Cloud"]). Add the "Google Cloud" Before "Aws Cloud".

Task3:

Iterate the 2 Server and Find which Server is active.

Task4:

If you have a list ["AWS" , "Azure", "GCP" , "AWS","Aure"] Not print the duplicate.

Task5:

If you have a list ["dev" , "test", "stg" ] , Found QA is present in the list or not.

Task6:

If you have a list [1,4,5,6,7,8,12,3,45,6,-1,9,0,-2 ] , Sort the list.

Task7:

Create the list print Smallest and Second Smallest.

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