#!/usr/bin/python3
x = {True: 'yes', 1: 'no',1.0: 'Really'} #create and initialize a dict
print(x) 
