The some_iterable variable stores words from a sentence. Use dictionary comprehension to create a new dictionary, in which keys will be words from some_iterable, written in uppercase letters, and values will be the same words written in lowercase letters. Print this dictionary.
Hint
You can use upper() and lower() methods on strings to convert all characters to uppercase and lowercase respectively.