A motivated 💪 student pursuing bachelor of computer applications 💻, seeking opportunities where I can utilize my analytical 🎯, mathematical ➕ and technical 🌐 skills to solve real life problems related to analyzing a big volume of datasets to draw insights that can help with business decisions.
- 🔭 I’m currently working on Data Analytics
- 🌱 I’m currently learning : Deep learning
- 😄 Pronouns : Siva / Prakash
- 💬 Ask me about : Data Analysis
- ⚡ Fun fact : I listen to music 2 hours a day
from datetime import date
details = {
"Name": 'Siva Prakash',
"Age": date.today().year - 2001,
"Pronouns": ["Siva", "Prakash", "He", "Him"],
"Description": ['Passionate', 'Optimistic',
'Energetic', 'Team Player'
'and a lot more'],
"Education":
[
{
"College": 'Apollo arts and science college',
"Year": range(2019, 2023)
},
{ "School": 'Seventh Day Adventist Matriculation Higher Secondary School',
"Year": range(2017, 2020)
}
]
}
for key, value in details.items():
print(f"{key} : {value}")
