I eat my peas with honey.
I've done it all my life.
It makes the peas taste funny.
But it keeps them on the knife!
I am italics.
And so am I.
I am bold.
And so am I.
I swing both ways.
As do I!
And me also!
ME TOO!
I'm not crazy. My mother had me tested.
I'm not crazy. My mother had me tested.
This is paragraph 1. No empty line in between, so I am still on paragraph 1.
This seems like paragraph 2.
Shouldn't this be paragraph 3 then.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = True | |
b = True | |
if not a and b: | |
print('Hello World') | |
else: | |
print('Bye World') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try: | |
v = d[k] | |
except KeyError: | |
v = d[k] = default_value |