Featured Post

14 Top Data Pipeline Key Terms Explained

Image
 Here are some key terms commonly used in data pipelines 1. Data Sources Definition: Points where data originates (e.g., databases, APIs, files, IoT devices). Examples: Relational databases (PostgreSQL, MySQL), APIs, cloud storage (S3), streaming data (Kafka), and on-premise systems. 2. Data Ingestion Definition: The process of importing or collecting raw data from various sources into a system for processing or storage. Methods: Batch ingestion, real-time/streaming ingestion. 3. Data Transformation Definition: Modifying, cleaning, or enriching data to make it usable for analysis or storage. Examples: Data cleaning (removing duplicates, fixing missing values). Data enrichment (joining with other data sources). ETL (Extract, Transform, Load). ELT (Extract, Load, Transform). 4. Data Storage Definition: Locations where data is stored after ingestion and transformation. Types: Data Lakes: Store raw, unstructured, or semi-structured data (e.g., S3, Azure Data Lake). Data Warehous...

How to Count Vowels in Input Quickly

Here you'll know how python counts characters in the input. This is an interview question asked recently.

How to Count Vowels in Input Quickly


How to Count Vowels in Input String


Below is the Interview Question

Vowels = ('aeiou')

You need to check any vowels are present in the input string. Vowels means 'a', 'e', 'i', 'o', 'u'. The below function checks each character of input and compares it with the Vowels.

3 Steps to Count Vowels in Input


You can achieve this in three steps.

1. Create a function called 'my_vowel' (the name up to you)
2. Use Set & Intersection Method
3. Run the function

1. Created 'my_vowel' Function


#!usr/bin/python
#This function finds vowel counts
#welcome to my function
""" Optional description """
def my_vowel(a):
    vowels=set('aeiou')
    a_1= vowels.intersection(set(a))
# initialized the dictionary
    found = {'a' : 0, 'e' : 0, 'i' : 0, 'o' :, 'u' : 0}
    for indx in a_1:
        if indx in vowels:
            found[indx] += 1
     for k, v sorted(found.items():
        print(k,v)






I used vim editor to create a .py module with the name vowel.py. Below is the actual code.


Logic to count vowels in input


2. Used Set & Intersection Methods

- Set method converts the input string as a set (you aware about this in mathes)

- Intersect method extracts each character and compares it with a Dictionary (that I'have already defined).

- I used the IF condition to work this logic correctly and validate each character.


3. Result

I have imported the .py module to Python3. Then, I have supplied an input string. It is then validated and given the counts.

The result says, in the given string the vowels are like this:
a -> 0
e -> 1
i -> 0
o -> 1
u -> 0

using function counting of vowels


Bottom-line

  • As expected in the result we got counts for matching vowels.
  • It's very tricky and asked in most of the interviews
  • Test your function with various strings and improve your knowledge.

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

SQL Query: 3 Methods for Calculating Cumulative SUM

Big Data: Top Cloud Computing Interview Questions (1 of 4)