Showing posts with label rps. Show all posts
Showing posts with label rps. Show all posts

9/7/22

Car data

 You are working at a car dealership and store the car data in a dictionary:

car = {

    'brand': 'BMW',

    'year': 2018,

    'color': 'red'

}

Your program needs to take the key as input and output the corresponding value.

Sample Input

year

Sample Output

2018

6/21/22

Heading, Paragraphs and Comments

 Headings

HTML has 6 main categories of heading tags which varies in sizes which decreases as the number gets higher.

Rock, Paper, Scissors in Python

 Rock, Paper, Scissors is a very popular game played amongst children and even adults.

It is also a very good project for beginners because it implements i/o, data modification, randomizing, conditions and others.

Blog Archive