
Learn to reverse a given string using a while loop without slice or built-in reverse, by iterating from the end using length and indexing to build the reversed output.
Reverse the order of words in a given string by splitting on spaces, reversing the resulting word list, and joining with spaces in Python.
learn to print characters at even and odd indices of a given string by iterating with step 2 and starting at 0 or 1 to separate the sequences.
Learn to merge two strings by alternating characters, handle varying lengths, and build the result string character by character in Python.
Learn to implement a Python program that reads input like a4b3c2 and outputs aaaabbbcc by repeating each preceding letter according to its following digit, demonstrating string processing for interview questions.
Develop a program that accepts an input like a3z2b4, repeats each alphabet symbol by its following number, and outputs the concatenated, sorted result aaabbbbzz.
Master a run-length encoding approach in Python to transform a string like aaaabbbccz into 4a3b2c1z by counting consecutive characters.
This lesson shows a python string transformation that uses ordinal unicode values to map each character and build an output by combining current and previous characters, with dynamic input examples.
Learn to remove duplicate characters from a given input string using maps, lists, and sets, and produce a unique character output with join.
Learn to count the number of occurrences of each character in a string using a simple approach with unique characters and a counting map.
Learn to compute the number of occurrences for every character in a string without using count(), by building and updating a dictionary of character counts and printing key-value pairs.
Learn to count the number of occurrences of each character in a string using a dictionary in Python, then output count followed by the character (e.g., 4A3B1C).
Learn to count each character in a string and output the character followed by its occurrences, e.g., A4B3C1, using a dictionary to store counts and optional sorting.
Learn how to compute the number of occurrences of each vowel in a string and present the results as a dictionary, handling case sensitivity and dynamic input.
Learn how to determine if two input strings are anagrams by comparing their sorted characters, ensuring both strings contain the same characters in any order.
Develop a simple program that reads a string, compares it forward and backward, and prints whether it is a palindrome, with examples like level and Malayalam.
The following programs will be covered as the part of this course:
1. Write a Program To REVERSE content of the given String by using slice operator
2. Write a Program To REVERSE content of the given String by using reversed() function
3. Write a Program To REVERSE content of the given String by using while loop
4. Write a Program To REVERSE order of words present in the given string
5. Write a Program To REVERSE internal content of each word
6. Write a Program To REVERSE internal content of every second word present in the given string
7. Write a program to print the characters present at even index and odd index separately for the given string
8. Write a program to merge characters of 2 strings into a single string by taking characters alternatively
9. Program to sort characters of the string, first alphabet symbols followed by digits
10. Program for the requirement,input: a4b3c2 and expected output: aaaabbbcc
11. Program for the requirement,input: a3z2b4 and expected output: aaabbbbzz (sorted String)
12. Program for the requirement,input: aaaabbbccz and expected output: 4a3b2c1z
13. Program for the requirement,input: a4k3b2 and expected output: aeknbd
14. Program to remove duplicate characters from the given input String
15. Program to find the number of occurrences of each character present in the given string with count() method
16. Important Conclusions about dictionary
17. Program to find the number of occurrences of each character present in the given string without using count() method
18. Program for the requirement,input: ABAABBCA and expected output: 4A3B1C
19. Program for the requirement,input: ABAABBCA and expected output: A4B3C1
20. Program to find the number of occurrences of each vowel present in the given string?
21. Program to check whether the given two strings are anagrams or not?
22. Program to check whether the given string is palindrome or not?
23. Program to generate words from the given input strings by taking characters alternatively?