• Stars
    star
    1
  • Language
    Python
  • License
    MIT License
  • Created over 2 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

fizzbuzz_interview_problem

More Repositories

1

WhoWillpayThebill

This script give a random name that entered (separatedby comma)
Python
1
star
2

password-generator

This is a simple Python Script that gives you random complex password
Python
1
star
3

HangMan_Game

The Tutorial of hangman game
Python
1
star
4

WebScrapping

Jupyter Notebook
1
star
5

tip-calculator

Tip a Parcentage , based ont the amount of bill and people shared
Python
1
star
6

Machine_Learning_Templates

Jupyter Notebook
1
star
7

BasketBallData_Visualization_Using_Python3

Using Python we have visualiz How the basket ball player earning money based on their skill, time in the field etc features
Jupyter Notebook
1
star
8

Covid_Data-Exploration-Using-SQL

In this project we will be using SQL to do some Data Exploration.
1
star
9

RockScissorspaperGame

Python
1
star
10

QR_code_Generator

This script create Bar code for any text
Jupyter Notebook
1
star
11

Leap_year_calculator

Instructions Write a program that works out whether if a given year is a leap year. A normal year has 365 days, leap years have 366, with an extra day in February. The reason why we have leap years is really fascinating, this video does it more justice: https://www.youtube.com/watch?v=xX96xng7sAE This is how you work out whether if a particular year is a leap year. on every year that is evenly divisible by 4 **except** every year that is evenly divisible by 100 **unless** the year is also evenly divisible by 400 e.g. The year 2000: 2000 ÷ 4 = 500 (Leap) 2000 ÷ 100 = 20 (Not Leap) 2000 ÷ 400 = 5 (Leap!) So the year 2000 is a leap year. But the year 2100 is not a leap year because: 2100 ÷ 4 = 525 (Leap) 2100 ÷ 100 = 21 (Not Leap) 2100 ÷ 400 = 5.25 (Not Leap)
Python
1
star