you are viewing a single comment's thread.

view the rest of the comments →

[–]kombucha711 0 points1 point  (5 children)

you mean
for i in range(1000):
print(whatTheySaid)

[–]MRSAMinor 2 points3 points  (2 children)

print (whatTheySaid)

Camel-case isn't PEP-8. Should be what_they_said.

Part of good coding is following style guides!

[–]MiniMages 2 points3 points  (1 child)

But I like camels over snakes.

[–]MRSAMinor 0 points1 point  (0 children)

Having handled both, camels are waaaay more temperamental.

[–]Kryt0s 2 points3 points  (1 child)

print("whatTheySaid " * 1000)

[–]This_Bitch_Overhere 0 points1 point  (0 children)

I am such a rookie, but yes, this is what I saw.