for x in range(1, 101):
if x % 3 == 0 and x % 5 == 0:
print("fizzbuzz")
elif x % 3 == 0:
print("fizz")
elif x % 5 == 0:
print("buzz")
else:
print(x)
A collection of spreadsheets, practical models, and data exercises focused on mastering core spreadsheet functionalities. This repository covers data organization, formula creation, filtering, conditional formatting, and data analysis techniques.
tableau fundamentals
Tableau is an interactive data visualization platform that turns raw data into dynamic, easy-to-read charts, graphs, and dashboards to uncover actionable insights through simple drag-and-drop actions.
Power BI fundamentals
Power BI is an interactive business analytics service that transforms raw data into rich, unified dashboards and reports for powerful data visualization and business insights.
SQL (Structured Query Language) is a standard programming language used to manage, query, update, and manipulate data stored in relational database management systems.
Microsoft Azure is a comprehensive cloud computing platform offering scalable computing, analytics, storage, and networking services to build, deploy, and manage applications globally through secure cloud infrastructure.
Google Colab provides a cloud-hosted Jupyter notebook environment running Python, allowing you to write, execute, analyze data, and build machine learning models directly in your web browser.