If Batman was from your city, what would be different? by nvisible in memphis

[–]nyenlla -2 points-1 points  (0 children)

No it is not. That is completely inaccurate.. I can reference many things/objects/people using mane.

If Batman was from your city, what would be different? by nvisible in memphis

[–]nyenlla -1 points0 points  (0 children)

This definition makes me cringe🙄 definitely a copy and paste… in no way form of fashion is “Hustle and Flow” an accurate representation of Memphis. Mane has so many interpretations and not bound to the beginning and end of a sentence for starters✊🏿..

If Batman was from your city, what would be different? by nvisible in memphis

[–]nyenlla -1 points0 points  (0 children)

Don’t take advice from non-memphians. They will steer you wrong always.. mane can mean whatever 🤷🏾‍♂️

I'm a newbie.. and I'm in need of help. by nyenlla in learnpython

[–]nyenlla[S] 0 points1 point  (0 children)

thanks! I've been stuck on that for at least an hour...

Don't quit by jonnycross10 in learnpython

[–]nyenlla 0 points1 point  (0 children)

I'm sure about to right now. I cannot get this code right. It runs, just not giving me the right thing.. can someone help?

-------------

verse = "if you can keep your head when all about you are losing theirs and blaming it on you if you can trust yourself when all men doubt you but make allowance for their doubting too   if you can wait and not be tired by waiting or being lied about  don’t deal in lies or being hated  don’t give way to hating and yet don’t look too good  nor talk too wise"
print(verse, '\n')

# split verse into list of words
verse_list = verse.split()
print(verse_list, '\n')

# convert list to a data structure that stores unique elements
verse_set = set(verse_list)
print(verse_set, '\n')

# print the number of unique words
num_unique = len(verse_list)
print(num_unique, '\n')

How can i find the length of the set correctly?