এখানে আমরা পাইথন বিল্ট ইন ফাংশন ব্যবহার করি। প্রথমে আমরা বাক্যটিকে শব্দের তালিকায় ভাগ করি। তারপর প্রতিটি শব্দকে বিপরীত করে একটি নতুন তালিকা তৈরি করুন, এখানে আমরা পাইথন তালিকা বোঝার কৌশল ব্যবহার করি এবং সর্বশেষ শব্দের নতুন তালিকায় যোগদান করি এবং একটি নতুন বাক্য তৈরি করি।
উদাহরণ
Input :: PYTHON PROGRAM Output :: NOHTYP MARGORP
অ্যালগরিদম
Step 1 : input a sentence. And store this in a variable s. Step 2 : Then splitting the sentence into a list of words. w=s.split(“”) Step 3 : Reversing each word and creating a new list of words nw. Step 4 : Joining the new list of words and make a new sentence ns.
উদাহরণ কোড
# Reverse each word of a Sentence # Function to Reverse words def reverseword(s): w = s.split(" ") # Splitting the Sentence into list of words. # reversing each word and creating a new list of words # apply List Comprehension Technique nw = [i[::-1] for i in w] # Join the new list of words to for a new Sentence ns = " ".join(nw) return ns # Driver's Code s = input("ENTER A SENTENCE PROPERLY ::") print(reverseword(s))
আউটপুট
ENTER A SENTENCE PROPERLY :: PYTHON PROGRAM NOHTYP MARGORP