Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

โปรแกรม Python ค้นหาอักขระมิเรอร์ในสตริง


กำหนดสตริงอินพุตของผู้ใช้และตำแหน่งจากตำแหน่งนั้น เราจำเป็นต้องมิเรอร์อักขระจนถึงความยาวของสตริงตามลำดับตัวอักษร ในการดำเนินการนี้ เราเปลี่ยน '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