কম্পিউটার

একটি স্ট্রিং মধ্যে মিরর অক্ষর খুঁজে পেতে পাইথন প্রোগ্রাম


একটি ব্যবহারকারীর ইনপুট স্ট্রিং এবং সেই অবস্থান থেকে অবস্থান দেওয়া আমাদের বর্ণানুক্রমিক ক্রমে স্ট্রিংয়ের দৈর্ঘ্য পর্যন্ত অক্ষরগুলিকে মিরর করতে হবে। এই অপারেশনে, আমরা 'a' থেকে 'z', 'b' থেকে 'y', 'c' থেকে 'x', 'd' থেকে 'w' ইত্যাদি পরিবর্তন করি মানে প্রথম অক্ষরটি শেষ হয়ে যায়। চালু।

Inpu t: p = 3
   Input string = python
Output : pygslm

অ্যালগরিদম

Step 1: Input the string and position from we need to mirror the characters.
Step 2: Creating a string which is stored in alphabetical order.
Step 3: Create an empty string.
Step 4: Then traverse each character up to the position from where we need a mirror and up to this sting is unchanged.
Step 5: From that position up to the length of the string, we reverse the alphabetical order.
Step 6: Return the string.

উদাহরণ কোড

# Python program to find mirror characters in string
 
def mirror(str1, n):
   # Creating a string having reversed
   # alphabetical order
   alphaset = "zyxwvutsrqponmlkjihgfedcba"
   l = len(str1)

   # The string up to the point specified in the
   # question, the string remains unchanged and
   # from the point up to the length of the 
   # string, we reverse the alphabetical order
   result = ""
   for i in range(0, n):
      result = result + str1[i];

   for i in range(n, l):
      result = (result +
      alphaset[ord(str1[i]) - ord('a')]);
   return result;
 
# Driver function
str1 = input("Enter the string ::>")
n = int(input("Enter the position ::>"))
result = mirror(str1, n - 1)
print("The Result ::>",result)

আউটপুট

Enter the string ::> python
Enter the position ::> 3
The Result ::> pygslm

  1. পাইথনে K অনন্য অক্ষর দিয়ে একটি স্ট্রিং গঠন করার জন্য ন্যূনতম প্রয়োজনীয় সুযোগ খুঁজে বের করার জন্য প্রোগ্রাম

  2. পাইথন প্রোগ্রামে casefold() স্ট্রিং

  3. পাইথন প্রোগ্রাম একটি স্ট্রিং-এ সমস্ত সদৃশ অক্ষর খুঁজে পেতে

  4. অক্ষরের তালিকাকে একটি স্ট্রিংয়ে রূপান্তর করতে পাইথন প্রোগ্রাম