Rᴇᴊᴡᴀɴ Bɪɴ Sᴜʟᴀɪᴍᴀɴ (@rejwanbinsulaiman)

Top 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

FizzBuzz_Code

fizzbuzz_interview_problem
Python
1
star
10

RockScissorspaperGame

Python
1
star
11

QR_code_Generator

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

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