Short resume

Education

Work experience

Skills

Main interests

import pandas as pd

# Define elements
elements = {
    "👾": "Artificial intelligence",
    "💬": "Natural language processing",
    "👀": "Computer vision",
    "📚": "Educational Technology (EdTech)",
    "🏥": "Medical image analysis"
}

# Create a dataframe with dictionary
df = pd.DataFrame(list(elements.items()), columns=["Emoji", "Field"])

# Show dataframe
print("List of interests:")
print(df)