Posts

Showing posts with the label python do while loop

Featured Post

How to Create a Symmetric Array in Python

Image
 Here's a Python program that says to write a Symmetric array transformation. A top interview question. Symmetric Array Transformation Problem: Write a Python function that transforms a given array into a symmetric array by mirroring it around its center. For example: Input: [1, 2, 3] Output: [1, 2, 3, 2, 1] Hints: Use slicing for the reverse part. Concatenate the original array with its mirrored part. Example def symmetric_array(arr):     """     Transforms the input array into a symmetric array by mirroring it around its center.     Parameters:     arr (list): The input array.     Returns:     list: The symmetric array.     """     # Mirror the array by concatenating the original with its reverse (excluding the last element to avoid duplication)     return arr + arr[-2::-1] # Example usage input_array = [1, 2, 3] symmetric_result = symmetric_array(input_array) print("Input Array:", input_arr...

Python: Do While Loop Real Examples

Image
While it is one of the loops in Python. The specialty is it never be false. You already know that in my previous post I have shared For Loop in Python . The for loop can be false. I am giving here one best example: print("Help! My computer doesn't work!") while True: print("Does the computer make any sounds (fans, etc.)") choice = input(" or show any lights? (y/n):") In the above logic, while is always true. When in input user can give 'Y/N'. if choice == 'n': # The computer does not have power print (" Do not show lights") if choice == 'y': # It is power plugged in print ("show lights") So, while is always true. Based on input the while loop works. Python is having the below list of Keywords. Pythons Reserved Words The Python reserved words are: and, exec, not, assert, finally, or, break, for, pass, class, form, print, continue, global, raise, def, if,...