Looking for a Friend to mess this up ... please

Can someone please mess this up for me ? I promise not to bug you to show me or explain the f*ck ups.

Thanks in advance.
/casey

Code below

Exercise 6 - Strings and Text

types_of_people = 10
x = f"There are {types_of_people} types of people."

binary = “binary”
do_not = “don’t”

y = f"Those who know {binary} and those who {do_not}."

print (x)
print (y)

print (f"I said: {x}")
print (f"I also said: ‘{y}’")

hilarious = False
joke_evaluation = “isn’t that joke so funny?! {}”

print (joke_evaluation.format(hilarious))

w = “This is the left side of …”
e = “a string with a right side.”

print (w + e)

1 Like

Enjoy @casey

types_of_people = 10
x = f"There are (types_of_people) types of people."

binary = “binary”
do_not = 'don’t'

y = f"Those who know {binary} and those who {do_not}."

print  (x)
print (y)

Print ("I said: {x}")
Print ("I also said: ‘{y}’")

hilarious == False
joke evaluation = “isn’t that joke so funny?! {}”

print (joke_evaluation.format(Hilarious))

w = “This is the left side of \n…”
e = “a string with a right side.”

print {w + e}
3 Likes

Run it in Python 2.7
:smiley:

3 Likes

Cool! Thanks :grinning: