100% Free Forever
AI-Powered Learning
Industry Expert Content
Certificates & Badges
Learn At Your Own Pace
HomeBlogFrom Cricket Fan to Python Developer: An Illustrative Learning Journey
Success Stories

From Cricket Fan to Python Developer: An Illustrative Learning Journey

SV

SkillVeris Team

Community Team

May 26, 2026 8 min read
Share:
From Cricket Fan to Python Developer: An Illustrative Learning Journey
Key Takeaway

Learning is faster when the subject matter is something you genuinely care about.

In this guide, you'll learn:

  • Using cricket data turned every Python lesson into a question worth answering.
  • The winning pattern: learn a skill, apply it to data you love, build something shareable, repeat.
  • Pandas replaced 200 lines of CSV parsing with five lines and unlocked dozens of new questions.
  • Sharing imperfect work publicly created opportunities that private studying never could.

1About This Story

Meet Arjun (illustrative). A 26-year-old with a commerce degree, working in an insurance back-office role in Chennai, spending his evenings watching IPL and scrolling cricket stats.

No coding experience. No plan. Just a growing conviction that data was the skill of the future, and a notebook full of handwritten cricket statistics questions he wished someone could answer for him.

💡Note

This is a composite illustrative journey based on the real experiences of multiple self-taught developers in the SkillVeris community. Names and specific details are fictional, but the timeline, challenges, and breakthroughs are representative of genuine learner paths. This story exists to show what is realistically achievable, not to make any specific claims about any individual.

2The Starting Point

Arjun had tried learning Python twice before — once from a generic tutorial about calculating areas of shapes, once from a course that started with "Hello, World!" and quickly moved to sorting algorithms. Both times he lost interest within two weeks. The material felt disconnected from anything he cared about.

The third attempt was different. He found a Kaggle dataset of IPL ball-by-ball data from 2008–2024 and made himself a rule: every Python concept he learned had to be applied to that dataset before he moved on.

If the lesson was about loops, he'd use loops to count dot balls. If it was about dictionaries, he'd store player statistics. If it was about functions, he'd write a strike rate calculator.

3Month 1–2: Python Basics Through Cricket

The first two months covered fundamentals: variables, data types, conditionals, loops, functions, and file reading. In a generic tutorial, these feel abstract. Applied to cricket data, they became concrete.

By the end of month 2, Arjun had written a 200-line Python script that read the IPL CSV, calculated batting averages and strike rates for every player, and printed a top-10 list.

It wasn't elegant code. But it worked, and more importantly, he understood every line — because he'd written it to answer a question he cared about.

The four-phase learning journey from Python basics to first job offer.
The four-phase learning journey from Python basics to first job offer.
  • Variables: rohit_runs = 0
  • Loops: iterate through every delivery in a match CSV
  • Conditionals: check if is_wicket == 1: wickets += 1
  • Functions: calculate_strike_rate(runs, balls)
  • File reading: open("ipl_2024.csv") and parse rows

4Month 3: Discovering Pandas

Arjun's 200-line CSV-parsing script could be replaced with five lines of pandas. The discovery that a library existed which made his hard work trivial felt initially deflating — then exhilarating.

He spent month 3 rewriting his cricket analysis in pandas and realising how much more he could now do.

He completed our Learn Python Through Cricket Statistics tutorial during this period, which gave him structured exercises that matched exactly what he'd been building. The timing felt like the material had been written for him.

By the end of month 3, he could answer 20 different cricket questions with pandas — head-to-head records, venue analysis, powerplay vs death-over scoring rates, season-by-season trends. Each one was a portfolio piece in waiting.

Pandas in five lines

The rewrite that replaced his entire script:

code
import pandas as pd
df = pd.read_csv("ipl_ball_by_ball.csv")
top_scorers = df.groupby("batsman")["batsman_runs"].sum().sort_values(ascending=False).head(10)
print(top_scorers)

5Month 4: Data Visualisation

Numbers on a terminal are one thing. Charts that a non-programmer can understand are another. Month 4 was about matplotlib and Seaborn.

He posted a few of these charts on Twitter/X with "I made this with Python" captions. They got traction in cricket Twitter — not because the code was impressive, but because the insights were interesting to other cricket fans.

Two people asked him how to reproduce them. He wrote his first ever tutorial explaining the code, posted it to a blog he created in an afternoon, and got 300 visitors that week.

  • Bar charts of top run-scorers (everyone in his office could understand this)
  • Line charts of season-by-season scoring rates (showing T20 cricket getting more aggressive over time)
  • Heatmaps of run rates per over across different teams
  • Scatter plots of batting average vs strike rate (the eternal cricket debate, now visualised)

🔑Key Takeaway

Sharing your learning publicly, even imperfect work, creates opportunities that private studying never does. Those 300 visitors gave Arjun confidence that his work had value. That confidence carried him through the hard months that followed.

6Month 5: Building the Cricket Dashboard

Month 5 was the project month. Arjun discovered Streamlit — a Python library that turns data scripts into web apps without any frontend knowledge. He spent four weekends building a cricket analytics dashboard.

He deployed it on Streamlit Community Cloud for free. It had a public URL. He could share it with anyone — cricket fans, colleagues, potential employers.

This was the moment "learning to code" became "I built something real." See the Data Dashboard with Streamlit guide for the exact approach he used.

Four principles that distinguished this journey from two previous failed attempts.
Four principles that distinguished this journey from two previous failed attempts.
  • Sidebar filters for team, season, and venue
  • KPI cards showing team and player stats for the selected filter
  • An interactive bar chart of top scorers
  • A line chart of run rate by over
  • A head-to-head comparison tool for any two batsmen

7Month 6: The Portfolio Push

With one strong project, Arjun pushed to build two more in month 6.

He also set up a GitHub profile with proper READMEs for all three projects, including screenshots, the live demo links, and a brief write-up of what he'd learned.

He updated his LinkedIn headline to "Data Analyst | Python | Pandas | Cricket Stats Enthusiast • Open to roles" and posted about his dashboard. A recruiter from a sports analytics startup reacted to the post.

  • Project 2: A batting form predictor using rolling averages (introduced him to basic pandas time-series operations)
  • Project 3: A salary vs performance analyser comparing IPL auction prices to player statistics (introduced him to merging datasets and correlation analysis)

9Month 8: First Offer

The offer came from a mid-sized e-commerce company's analytics team. The role: junior data analyst. Responsibilities that matched his stack exactly: Python, pandas, SQL, and Tableau for dashboard reporting.

The hiring manager mentioned in the final round that the cricket dashboard was one of the most memorable portfolio pieces he'd seen — not because cricket was relevant to e-commerce, but because it showed genuine personal investment in the work.

The salary was a 40% increase over his back-office role. More importantly, it was the first step into a career he'd chosen deliberately.

10What Made the Difference

Four principles distinguished this journey from the two previous failed attempts.

  • Learning through a subject he cared about: motivation is not discipline — it's design. He didn't need willpower to study cricket data. The curiosity was already there.
  • Building something every month: the discipline of producing a concrete output each month prevented tutorial paralysis. Messy code that runs beats perfect code that's never written.
  • Sharing publicly: the blog post, the Twitter charts, the LinkedIn update. Each one created a thread of opportunity that private learning could not.
  • Starting to apply in month 5, not month 8: early rejections and assessments revealed exactly what gaps to fill. Waiting until "ready" is waiting forever.

11The Tools Used

Every tool in the journey was free, and remains free. The only real investment was time — roughly 10–15 hours per week across 8 months, for a total cost of ₹0.

  • Python 3.12 · All code · Free
  • Pandas, Matplotlib, Seaborn · Data analysis + charts · Free
  • Streamlit · Dashboard web app · Free
  • VS Code · Code editor · Free
  • GitHub · Portfolio hosting · Free
  • Kaggle · Dataset source · Free
  • Streamlit Community Cloud · App deployment · Free

12Key Takeaways

The journey distils into a handful of repeatable principles.

  • Learning is faster and more durable when the data is something you care about. Cricket, football, music, film — use your interest as your learning vehicle.
  • Building something every month creates a portfolio and develops the confidence to explain your work in interviews.
  • Share your work publicly from month 1 — even imperfect, incomplete, early work. Visibility creates luck.
  • Apply before you feel ready. Early interviews are free coaching sessions on what you need to improve.

13Your Turn: Start the Same Path

You can start Arjun's path right now with three structured resources.

  • Learn Python Through Cricket Statistics — the exact tutorial that guided month 3.
  • Data Analytics Roadmap for Beginners — the structured path with timelines.
  • Build a Data Dashboard with Streamlit — the month 5 project, step by step.

14Frequently Asked Questions

Is 8 months realistic for someone with no coding background? For a data analyst role (not a software developer role), yes — with consistent effort of 10–15 hours per week. The 8-month timeline in this story is achievable but not guaranteed. Some learners take 12–18 months; some take 6. The variables are prior technical comfort, time available, and the strength of the portfolio built.

Do you need to use cricket data specifically, or can you use any data? Use whatever you care about. Football, Formula 1, Bollywood box office, stock prices, climate data, music charts. The cricket theme in this story exists to make the narrative concrete. The principle is: use real data you're curious about, because curiosity sustains effort over months.

What SQL skills should you prioritise for a data analyst interview? Window functions (ROW_NUMBER, RANK, LAG, LEAD), aggregations with GROUP BY and HAVING, CTEs, and multi-table JOINs. These appear in almost every data analyst assessment. Practise on Mode Analytics or StrataScratch with real interview questions.

Can this path work for someone who wants to become a software developer rather than a data analyst? Partly. The Python fundamentals and project-building approach transfer directly. For software development, you'd replace the data analysis focus with web development (FastAPI, React, databases) or Android (Kotlin). The principle — learn by building real projects in a domain you care about — applies universally.

📄

Get The Print Version

Download a PDF of this article for offline reading.

About the Publisher

SV

SkillVeris Team

Community Team

Real stories from SkillVeris learners who transitioned into tech and transformed their careers.

View all posts

Never miss an update

Get the latest tutorials and guides delivered to your inbox.

No spam. Unsubscribe anytime.

Frequently Asked Questions

21 categories · pick one to explore

Does SkillVeris have a tech blog, and what does it cover?
Yes, the SkillVeris blog has over 500 articles covering AI and machine learning, programming, web development, DevOps, cloud, security, databases and career guidance. Articles are practical and answer-first, and many use the Learn Through Hobbies approach, teaching technical concepts through cricket, music, gaming or cooking analogies. Everything is free to read.
What is the SkillVeris tech glossary and how big is it?
The SkillVeris glossary is a free reference of roughly 2,000-plus technology terms, each with a clear plain-language definition. It spans AI, programming, web, DevOps, cloud, security and database vocabulary, so whenever a lesson, article or job description uses jargon you do not recognise, the glossary gives you a fast, reliable answer.
Are the developer cheat sheets on SkillVeris free to download?
The cheat sheets are completely free to use, like everything else on SkillVeris. Each sheet condenses a language or tool into its essential syntax, commands and patterns for quick reference while coding. They are designed for rapid lookup during real work, complementing the deeper explanations found in study notes and courses.
Which programming references and cheat sheets are available?
Cheat sheets cover the platform's main domains, including programming languages, AI and ML tooling, web development, DevOps, cloud, security and databases, matching the topics of the 37 live courses. Each sheet lists related reading links and hashtags, so you can jump from a quick reference into fuller study notes or blog articles.
How do I find the meaning of a technical term quickly?
Search the SkillVeris glossary, which holds around 2,000-plus terms with concise, plain-language definitions. Each entry gets to the point in its first sentence, then links to related reading like blog posts or study notes for deeper context. It is faster and more consistent than sifting through scattered search results.
Is the SkillVeris blog good for beginners learning to code?
Yes, many blog articles are written specifically for beginners, and the Learn Through Hobbies style makes them unusually approachable: you might learn Python concepts through cricket or understand APIs through cooking. With 500-plus articles across skill levels, beginners can start with fundamentals and keep reading as they advance, entirely free.
Can cheat sheets replace full courses for learning a language?
No, cheat sheets are references, not teaching tools; they assume you already understand the concepts and just need syntax or commands fast. To actually learn a language, take a structured SkillVeris course with its 24–40 lessons and assessments, then keep the cheat sheet beside you while practising in Code Lab.
How often are new blog articles published on SkillVeris?
The blog grows regularly and already exceeds 500 articles, with new posts added as courses launch and technologies evolve. Topics track the platform's catalogue across AI, programming, web development, DevOps, cloud and security, so checking the Blog section periodically surfaces fresh tutorials, explainers and career-focused pieces, all free to read.
Does the glossary cover AI and machine learning terms?
Yes, AI and machine learning vocabulary is a major part of the roughly 2,000-plus term glossary, covering everything from foundational terms to modern concepts around LLMs, RAG and MLOps. Definitions are plain-language and answer-first, which helps when dense AI papers or course lessons throw unfamiliar jargon at you.
Are there cheat sheets for interview preparation?
Cheat sheets work well as interview-day refreshers because they compress syntax, commands and key concepts into scannable references. For dedicated preparation, combine them with the SkillVeris interview questions feature, which includes readiness scoring, plus study notes for depth. Reviewing a relevant cheat sheet just before an interview steadies recall under pressure.
Can I read the tech blog without signing up?
Yes, the blog is freely readable, and SkillVeris never charges for content. All 500-plus articles are open, covering tutorials, concept explainers and career advice. Creating a free account adds value elsewhere on the platform, like course progress tracking and certificates, but reading the blog requires no commitment at all.
How is the SkillVeris glossary different from Wikipedia?
The glossary is purpose-built for learners: definitions are short, plain-language and answer-first, sized for a quick lookup mid-lesson rather than a deep encyclopedic read. Entries also cross-link to related SkillVeris study notes, blog posts and courses, so a definition becomes a doorway into structured learning instead of a dead end.
Do blog articles use the Learn Through Hobbies method?
Many blog articles teach technical topics through hobby analogies, a hallmark of the SkillVeris blog, so you will find articles explaining programming through cricket, machine learning through music, or system design through cooking. The analogy is the teaching device; the article still delivers the real technical concept underneath.
Where can I find quick programming references while coding?
Open the SkillVeris cheat sheets, which are built exactly for that moment: compact, scannable references for syntax, commands and common patterns across languages and tools. Keep the relevant sheet in a browser tab while you work in Code Lab or your own editor, and dip into the glossary for terminology.
Is there a glossary entry for terms I meet in job descriptions?
Very likely yes, with roughly 2,000-plus terms across AI, programming, web, DevOps, cloud, security and databases, the glossary covers most jargon that appears in tech job descriptions. Decoding a listing this way helps you judge role fit honestly and prepares you to discuss those terms in interviews.
Are the blog articles written for the Indian tech audience?
The blog serves Indian learners plus a worldwide audience. Content stays globally relevant while acknowledging realities that matter in India, such as free access being essential for students and freshers, and career guidance that connects naturally to the SkillVeris jobs portal, which aggregates roles across India, UK, USA, Germany and Remote.
Can I suggest a topic for the blog or glossary?
SkillVeris content grows in response to what learners need, so feedback is welcome through the platform's support channels. If a term is missing from the glossary or a topic deserves an article, telling the team helps prioritise it. Meanwhile, the AI Mentor can answer the question immediately, 24/7, at any depth.
Do cheat sheets and glossary entries link to deeper learning?
Yes, every cheat sheet and glossary entry carries related reading links into study notes, blog articles and courses, plus concept hashtags for discovering similar content. This cross-linking means a thirty-second lookup can smoothly become a structured learning session whenever you decide you want more than a quick answer.
What makes SkillVeris programming references trustworthy?
The references are written to strict internal quality standards, kept consistent with the platform's 37 live courses, and never padded with invented statistics or hype. Definitions and cheat sheets are reviewed against the same content contracts that govern courses, and the answer-first style makes any inaccuracy easy to spot and correct.
How do the blog, glossary and cheat sheets fit into my learning routine?
Use them as satellites around your main course: read blog articles for context and motivation, hit the glossary the instant jargon appears, and keep cheat sheets open while coding. Together with study notes, Code Lab and the 24/7 AI Mentor, they turn passive reading into a complete, free learning system.

What Learners Say

Real journeys from the SkillVeris community — swipe for more.

SkillVeris taught me Python through Cricket. Now I’m building real projects and feeling confident!
Arjun S. · B.Tech Student
The best platform for hobby-based learning. Concepts finally stick.
Priya R. · Data Analyst
I went from zero coding to a portfolio of projects — all by learning through my love for gaming. Landed my first internship!
Kabir M. · CS Undergraduate
Trending Topics50 popular tags — tap to explore
Trending CoursesAll 37 free courses — tap to browse