• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 14:47
CEST 20:47
KST 03:47
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
[ASL22] Ro8 Preview: In A Tizzy11[ASL22] Ro16 Preview: Holy Diver5[ASL22] Ro16 Preview: Rough Waters10[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9
Community News
Weekly Cups (Sep 13-20): herO scores triple2BSL Season 2312Weekly Cups (Sep 7-12): SHIN, ByuN, MaxPax double down1StarCraft open world shooter announced at BlizzCon101Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism10
StarCraft 2
General
Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool How do you feel about the StarCraft shooter announcement at BlizzCon 2026? Balance hotfix patch 5.0.16b (July 16) Weekly Cups (Sep 13-20): herO scores triple The Death of Cheese: From a Professional Cheeser
Tourneys
ScienceCraft (October 24-25) - Live Event 2026 GSTL Grand Finals Sparkling Tuna Cup - Weekly Open Tournament Master Swan Open (Global Bronze-Master 2) Stellar Fest TWO the Moon (Dec 16-20)
Strategy
[H] ZvP Mid-Late Game: Stalkers Collossi HT
Custom Maps
[M] (2) Frigid Storage
External Content
Mutation # 544 Double Trouble The PondCast: SC2 News & Results Mutation # 543 Enhanced Defenses Mutation # 542 The Ascended
Brood War
General
Syncronization issues and can't find games PLAYzone Challenge - open offline tour in Prague Bot on ladder NaDa's Body SC4ALL II: Brood War Player Announcement 3/4 - soO
Tourneys
[ASL22] Ro8 Day 2 [Megathread] Daily Proleagues [IPSL] IPSL is Back With Winter 26-27! PLAYzone Challenge - open offline tour in Prague
Strategy
Cliff Jump Revisited (1 in a 1000 strategy) Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation
Other Games
General Games
Stormgate/Frost Giant Megathread Warcraft III: The Frozen Throne EVE Corporation Nintendo Switch Thread Diablo IV
Dota 2
Dota 2 Champions League Season 3 Begins April 25! Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Artificial Intelligence Thread All you football fans (soccer)!
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! [Manga] One Piece Diablo Animated Series on Netflix
Sports
Football (Soccer) Thread
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Recent Gifted Posts
Blogs
Violent-Cooperative Play and…
TrAiDoS
38 yo Retired SWE loo…
PurE)Rabbit-SF
Can Bots Beat Pros?? Starcr…
namkraft
[meme] I finally understa…
LUCKY_NOOB
Regacy Esports:Our Goa…
regacyesports
Customize Sidebar...

Website Feedback

Closed Threads



Active: 9019 users

The Big Programming Thread - Page 208

Forum Index > General Forum
Post a Reply
Prev 1 206 207 208 209 210 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Kambing
Profile Joined May 2010
United States1176 Posts
December 03 2012 20:18 GMT
#4141
On December 04 2012 05:04 Recognizable wrote:

original = raw_input('Enter a word:')
word = original.lower()
pyg = 'ay'
new_wordV = word+pyg #w/Vowel
new_wordC = original[1:]+word[0]+pyg #w/Consonant
first = original[0]
if len(original) > 0 and original.isalpha():
if first == "a" or first == "i" or first == "e" or first == "o" or first == "u" or first == "A" or first == "I" or first == "E" or first == "O" or first == "U" :
print new_wordV
else:
print new_wordC
else:
print 'empty'


Can this be made to look easier/less lines of code? If so could you give me some pointers what I could do(don't do it for me) Because I once posted something here 5+ lines and it was all done in like 2 :O. Especially the line with all the first==, it bugs me. I tried messing around a bit but nothing worked.


(1) Don't use locals unless its necessary. In particular, you shouldn't need to pre-compute new_wordV and new_wordC until you actually need them (i.e., inside of the if-statement).

(2) The inner if-guard can be greatly simplified by using lower() as well as set inclusion (e.g., x in [1, 2, 3]) rather than repeated equality checks.
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
December 03 2012 20:30 GMT
#4142
On December 04 2012 05:04 Recognizable wrote:

original = raw_input('Enter a word:')
word = original.lower()
pyg = 'ay'
new_wordV = word+pyg #w/Vowel
new_wordC = original[1:]+word[0]+pyg #w/Consonant
first = original[0]
if len(original) > 0 and original.isalpha():
if first == "a" or first == "i" or first == "e" or first == "o" or first == "u" or first == "A" or first == "I" or first == "E" or first == "O" or first == "U" :
print new_wordV
else:
print new_wordC
else:
print 'empty'


Can this be made to look easier/less lines of code? If so could you give me some pointers what I could do(don't do it for me) Because I once posted something here 5+ lines and it was all done in like 2 :O. Especially the line with all the first==, it bugs me. I tried messing around a bit but nothing worked. Also I'd like to add coding yourself(mostly) is really fun, I just spent 10 minutes pressing in random words and I was amazed at how it worked haha.


I don't know enough python to tell you the exact code, but for your "first == ..." line, i prefer to use arrays and then a function like indexof() or in_array() or whatever it might be called in python. In your specific case, the string "aieouAIEOU" with a string indexof() or strpos() function would also work.
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
Last Edited: 2012-12-03 21:21:34
December 03 2012 20:51 GMT
#4143
On December 04 2012 05:18 Kambing wrote:
Show nested quote +
On December 04 2012 05:04 Recognizable wrote:
original = raw_input('Enter a word:') 
word = original.lower()
pyg = 'ay'
new_wordV = word+pyg #w/Vowel
new_wordC = original[1:]+word[0]+pyg #w/Consonant
first = original[0]
if len(original) > 0 and original.isalpha():
if first == "a" or first == "i" or first == "e" or first == "o" or first == "u" or first == "A" or first == "I" or first == "E" or first == "O" or first == "U" :
print new_wordV
else:
print new_wordC
else:
print 'empty'


Can this be made to look easier/less lines of code? If so could you give me some pointers what I could do(don't do it for me) Because I once posted something here 5+ lines and it was all done in like 2 :O. Especially the line with all the first==, it bugs me. I tried messing around a bit but nothing worked.


(1) Don't use locals unless its necessary. In particular, you shouldn't need to pre-compute new_wordV and new_wordC until you actually need them (i.e., inside of the if-statement).

(2) The inner if-guard can be greatly simplified by using lower() as well as set inclusion (e.g., x in [1, 2, 3]) rather than repeated equality checks.


1) and 2) Do you mean this?

vowels=["a", "e", "i", "o", "u", "A", "E", "I", "O", "U"]
original = raw_input('Enter a word:').lower()
if len(original) > 0 and original.isalpha():
if original[0]in vowels:
print original()+"ay"
else:
print original[1:]+original[0]+"ay"
else:
print 'empty'



I don't know enough python to tell you the exact code, but for your "first == ..." line, i prefer to use arrays and then a function like indexof() or in_array() or whatever it might be called in python. In your specific case, the string "aieouAIEOU" with a string indexof() or strpos() function would also work.


I understand some of these words ^.^
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2012-12-03 21:37:12
December 03 2012 20:55 GMT
#4144
On December 04 2012 05:04 Recognizable wrote:

original = raw_input('Enter a word:')
word = original.lower()
pyg = 'ay'
new_wordV = word+pyg #w/Vowel
new_wordC = original[1:]+word[0]+pyg #w/Consonant
first = original[0]
if len(original) > 0 and original.isalpha():
if first == "a" or first == "i" or first == "e" or first == "o" or first == "u" or first == "A" or first == "I" or first == "E" or first == "O" or first == "U" :
print new_wordV
else:
print new_wordC
else:
print 'empty'


Can this be made to look easier/less lines of code? If so could you give me some pointers what I could do(don't do it for me) Because I once posted something here 5+ lines and it was all done in like 2 :O. Especially the line with all the first==, it bugs me. I tried messing around a bit but nothing worked. Also I'd like to add coding yourself(mostly) is really fun, I just spent 10 minutes pressing in random words and I was amazed at how it worked haha.


+ Show Spoiler +

word = raw_input("Enter a word: ").lower()

if (not word.isalpha()) or word.isspace():
print "Invalid input for word generation"

else:
vowels_lowercase = ["a", "e", "i", "o", "u"]
pyg = "ay"

if word[0] in vowels_lowercase: #word with first letter as vowel
print word+pyg
else: #word with first letter as consonant
print word[1:]+word[0]+pyg

raw_input()


I don't remember how pig latin works so there could be some optimizations beyond this with more knowledge of exactly the rules.

You use "in" to automatically check for the existence of something in a list.

You do the exception handling at the beginning of the code.

You use the isalpha() and isspace() functions on strings to make it more verbose. (netherh said isspace() is in isalpha()? lolol) (oh, isalpha checks for empty string, not spaces. kk xD) (wait no I still think isspace() might be unnecessary, better safe than sorry?)

You use not isalpha() because it makes a lot more sense and is verbose as an exception handler; if it's not alphabetical, then it's an exception, instead of having just an "else" for everything.

You put the variables in the scope in which they're used, so if you don't use them, you didn't create them needlessly.

You can use sequences of string methods like lower() and upper() in one line.

If you've already used lower() on a string, it can't possibly have uppercase letters, right? So no need to check for those.

On December 04 2012 05:51 Recognizable wrote:
Show nested quote +
I don't know enough python to tell you the exact code, but for your "first == ..." line, i prefer to use arrays and then a function like indexof() or in_array() or whatever it might be called in python. In your specific case, the string "aieouAIEOU" with a string indexof() or strpos() function would also work.


I understand some of these words ^.^


They're not really relevant for this situation. They look for characters in strings, which is different from this problem. The same thing for indexof() and strpos() is find() in Python. I'm not exactly sure what indexof() is though. I assume it's the same as strpos().

Python has some beautiful special things you should use. Using the "element in list" code automatically makes your life so much nicer.

Your ultimate goal in Python is writing really succinct and verbose code. Something Python programmers love is that your Python code can be read like a book if you write it really well.


@netherh, <insert huge debate about returning early versus else propagation> :D
also, oops, you caught my bad habit of putting those list catchers as globals.
There is no one like you in the universe.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2012-12-03 20:57:13
December 03 2012 20:56 GMT
#4145
--doublepost--
There is no one like you in the universe.
Perscienter
Profile Joined June 2010
957 Posts
December 03 2012 21:09 GMT
#4146
On December 04 2012 05:30 Morfildur wrote:I don't know enough python to tell you the exact code, but for your "first == ..." line, i prefer to use arrays and then a function like indexof() or in_array() or whatever it might be called in python. In your specific case, the string "aieouAIEOU" with a string indexof() or strpos() function would also work.

That's not Python jargon. You are probably talking about lists.


Well someone posted his solution any way.

Make sure to go through the tutorial, especially control flow tools, data structures etc.

And please get used to PEP 8, especially the maximum line length, which does make sense and the naming conventions.
netherh
Profile Blog Joined November 2011
United Kingdom333 Posts
Last Edited: 2012-12-03 21:26:32
December 03 2012 21:17 GMT
#4147
On December 04 2012 05:04 Recognizable wrote:

original = raw_input('Enter a word:')
word = original.lower()
pyg = 'ay'
new_wordV = word+pyg #w/Vowel
new_wordC = original[1:]+word[0]+pyg #w/Consonant
first = original[0]
if len(original) > 0 and original.isalpha():
if first == "a" or first == "i" or first == "e" or first == "o" or first == "u" or first == "A" or first == "I" or first == "E" or first == "O" or first == "U" :
print new_wordV
else:
print new_wordC
else:
print 'empty'


Can this be made to look easier/less lines of code? If so could you give me some pointers what I could do(don't do it for me) Because I once posted something here 5+ lines and it was all done in like 2 :O. Especially the line with all the first==, it bugs me. I tried messing around a bit but nothing worked. Also I'd like to add coding yourself(mostly) is really fun, I just spent 10 minutes pressing in random words and I was amazed at how it worked haha.


What Kambing said. Note that you're not really consistent with your lower / upper case between vowel / consonant versions due to using original[1: ] in one, and word in the other (kinda nitpicking, but thought I'd point it out). You also access word[0] before checking if it's empty.

Personally I'd go with this (python 3.x):

original = input('Enter a word: ').lower()

if not original.isalpha() or original.isspace():
print("invalid")
return

vowels = ["a", "e", "i", "o", "u"]
pyg = "ay"

if original[0] in vowels:
print(original + pyg)
else:
print(original[1:] + original[0] + pyg)

Note that the isalpha() check also catches empty strings.

@Blisse: haha. XD (*steals your isspace check*).
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
Last Edited: 2012-12-03 21:32:05
December 03 2012 21:26 GMT
#4148
So many ways to write something, I'm kinda confused. On another note, can anyone recommend a good book for learning to program?


vowels=["a", "e", "i", "o", "u", "A", "E", "I", "O", "U"]
original = raw_input('Enter a word:').lower()
if len(original) > 0 and original.isalpha():
if original[0]in vowels:
print original()+"ay"
else:
print original[1:]+original[0]+"ay"
else:
print 'empty'


This is what I ended up with, anyway I have to go sleep.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2012-12-03 23:53:14
December 03 2012 21:48 GMT
#4149
On December 04 2012 06:26 Recognizable wrote:
So many ways to write something, I'm kinda confused. On another note, can anyone recommend a good book for learning to program?


vowels=["a", "e", "i", "o", "u", "A", "E", "I", "O", "U"]
original = raw_input('Enter a word:').lower()
if len(original) > 0 and original.isalpha():
if original[0]in vowels:
print original()+"ay"
else:
print original[1:]+original[0]+"ay"
else:
print 'empty'


This is what I ended up with, anyway I have to go sleep.



There are always a lot of ways to write something; there is no "best way." It always depends on what you want to achieve with your code.

However, there are a lot of "bad ways."

One such way is writing code with lots of redundancies and it's always frowned upon.

For example, if you call lower() on a string, then you check if the string has any uppercase letters. It even sounds redundant, no? as how can a lower cased string have uppercase letters anyways?

Using len(word) > 0 is redundant if you also have a isalpha() check, since isalpha fails on empty strings. (I think isspace() is unnecessary though and I'm not sure if isalpha() fails for sentences with spaces in them, as our assumption is this program will only be fed words and not strings.)

So those are some good practices.

Other good practices is also making use of special functions inside the programming language you're working on; in this example, "element in list", instead of writing your own ways to check it, like where you used "first_letter == ... ".


In Python, the favourite practice is usually make your code as verbose and succinct as possible. Make it highly readable, but also very short and sweet. If I read through any part of your code, it should be obvious what you're doing, but also that your way of doing that is the fastest and most maintainable way to do it.

When we reversed your if...else position, we did it because now it's perfectly clear when you handle your errors and what you determined are errors. They're in the same block of code.


The best way to learn is actually just to code a lot a lot in the language, write lots of mini-programs, keep up-to-date knowledge of the language, and look at good stacks exchange solutions to your problems and why they're good.

If you want to learn about programming in general, scope, exceptions and such, there are some books, but best practices come from just writing a lot of code, and debugging your horrible code when it doesn't work.


tl;dr It's a lot more about understanding why you would use one piece of code instead of an another.
There is no one like you in the universe.
Craton
Profile Blog Joined December 2009
United States17303 Posts
Last Edited: 2012-12-03 23:29:28
December 03 2012 23:29 GMT
#4150
On December 03 2012 20:10 Tobberoth wrote:
Show nested quote +
On December 03 2012 19:36 teamamerica wrote:
On December 03 2012 08:42 Morfildur wrote:
On December 03 2012 08:24 darkness wrote:
On December 03 2012 06:09 Fyodor wrote:
On December 03 2012 05:56 darkness wrote:
Java: Is it possible to send output across the network to every user within a linked a list? If yes, how? I've tried some google search, but I found nothing.

for each loop? I'm not sure I understand at what level your problem is.


Some users are added to a linked list. I want to deliver a msg to all of them. They're all connected. loop is ok, but how do I make sure everyone receives the message? E.g. out.println("text") doesn't ask for receiver.


That depends on what you want to send it through...


Post more code! Put it on github and link for easiness.

On December 03 2012 18:51 Arnstein wrote:
What does a <> b mean in Python?


Did they just stick this in there for people coming from php (it's not exactly the same thing in php but it's close - in php it checks for !equality after implicit type conversions), or is there another language they're both getting this syntax from?

<> Is used in both SQL and Visual basic.

And is very annoying when you've been working in these languages for so long that when you switch to something else you've forgotten other languages use != and can't figure out why your code won't compile. ~_~
twitch.tv/cratonz
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
December 03 2012 23:43 GMT
#4151
On December 03 2012 08:42 Morfildur wrote:
Show nested quote +
On December 03 2012 08:24 darkness wrote:
On December 03 2012 06:09 Fyodor wrote:
On December 03 2012 05:56 darkness wrote:
Java: Is it possible to send output across the network to every user within a linked a list? If yes, how? I've tried some google search, but I found nothing.

for each loop? I'm not sure I understand at what level your problem is.


Some users are added to a linked list. I want to deliver a msg to all of them. They're all connected. loop is ok, but how do I make sure everyone receives the message? E.g. out.println("text") doesn't ask for receiver.


That depends on what you want to send it through...


out = new PrintWriter
(new OutputStreamWriter(client.getOutputStream()));

Does that help? I'd like to send out.println(); to every user that is connected atm. No idea how to do it.
3FFA
Profile Blog Joined February 2010
United States3931 Posts
December 04 2012 00:47 GMT
#4152
Can someone explain the use of rand() and srand() in (not objective or ++)C programming to me? I'm very confused as to how I should use it properly, and my google searches on these have lead to nothing that I fully understood. The use of this will be in the rolling of a 6-sided dice 60 times so it would help to also learn how to make it only output random integers from 1-6.
"As long as it comes from a pure place and from a honest place, you know, you can write whatever you want."
heroyi
Profile Blog Joined March 2009
United States1064 Posts
Last Edited: 2012-12-04 01:13:54
December 04 2012 01:08 GMT
#4153
On December 04 2012 09:47 3FFA wrote:
Can someone explain the use of rand() and srand() in (not objective or ++)C programming to me? I'm very confused as to how I should use it properly, and my google searches on these have lead to nothing that I fully understood. The use of this will be in the rolling of a 6-sided dice 60 times so it would help to also learn how to make it only output random integers from 1-6.

if i am not mistaken:

rand() is a pseudo random generator i.e it follows a "formula" to create random number thus the pseudo. Usually the basic formula consists of simple addition, multiplication and shifts.

srand is used to tell where in the list of the "random" numbers to start from in its VERY long list of numbers (for example: tell it to start the "random" generator at the 7th number)

wat wat in my pants
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2012-12-04 02:20:15
December 04 2012 02:19 GMT
#4154
On December 04 2012 09:47 3FFA wrote:
Can someone explain the use of rand() and srand() in (not objective or ++)C programming to me? I'm very confused as to how I should use it properly, and my google searches on these have lead to nothing that I fully understood. The use of this will be in the rolling of a 6-sided dice 60 times so it would help to also learn how to make it only output random integers from 1-6.

Yeah, there's a huge random number table that C uses to pull numbers from (compiler specific). Rand pulls a number from this table and increments the current table pointer. srand seeds the pointer to this table, which means it sets the index pointer to a randomized location, a very randomized location. So in order to generate "random" seeds your program needs a clever way of seeding the PRNG (psuedo-random number generator) on program start.

http://www.randygaul.net/2010/11/02/prngs-pseudo-random-number-generator/
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
December 04 2012 11:04 GMT
#4155
On December 04 2012 06:48 Blisse wrote:
Show nested quote +
On December 04 2012 06:26 Recognizable wrote:
So many ways to write something, I'm kinda confused. On another note, can anyone recommend a good book for learning to program?


vowels=["a", "e", "i", "o", "u", "A", "E", "I", "O", "U"]
original = raw_input('Enter a word:').lower()
if len(original) > 0 and original.isalpha():
if original[0]in vowels:
print original()+"ay"
else:
print original[1:]+original[0]+"ay"
else:
print 'empty'


This is what I ended up with, anyway I have to go sleep.



There are always a lot of ways to write something; there is no "best way." It always depends on what you want to achieve with your code.

However, there are a lot of "bad ways."

One such way is writing code with lots of redundancies and it's always frowned upon.

For example, if you call lower() on a string, then you check if the string has any uppercase letters. It even sounds redundant, no? as how can a lower cased string have uppercase letters anyways?

Using len(word) > 0 is redundant if you also have a isalpha() check, since isalpha fails on empty strings. (I think isspace() is unnecessary though and I'm not sure if isalpha() fails for sentences with spaces in them, as our assumption is this program will only be fed words and not strings.)

So those are some good practices.

Other good practices is also making use of special functions inside the programming language you're working on; in this example, "element in list", instead of writing your own ways to check it, like where you used "first_letter == ... ".


In Python, the favourite practice is usually make your code as verbose and succinct as possible. Make it highly readable, but also very short and sweet. If I read through any part of your code, it should be obvious what you're doing, but also that your way of doing that is the fastest and most maintainable way to do it.

When we reversed your if...else position, we did it because now it's perfectly clear when you handle your errors and what you determined are errors. They're in the same block of code.


The best way to learn is actually just to code a lot a lot in the language, write lots of mini-programs, keep up-to-date knowledge of the language, and look at good stacks exchange solutions to your problems and why they're good.

If you want to learn about programming in general, scope, exceptions and such, there are some books, but best practices come from just writing a lot of code, and debugging your horrible code when it doesn't work.


tl;dr It's a lot more about understanding why you would use one piece of code instead of an another.


I understand the redundancies, silly of me. What do you mean by element in list? IF, ELSE, makes sense. Thanks. I already have an idea for something I'd like to program. But first I am going to finish the python codeacademy courses before I start.
Kambing
Profile Joined May 2010
United States1176 Posts
December 04 2012 13:06 GMT
#4156
On December 04 2012 20:04 Recognizable wrote:
Show nested quote +
On December 04 2012 06:48 Blisse wrote:
On December 04 2012 06:26 Recognizable wrote:
So many ways to write something, I'm kinda confused. On another note, can anyone recommend a good book for learning to program?


vowels=["a", "e", "i", "o", "u", "A", "E", "I", "O", "U"]
original = raw_input('Enter a word:').lower()
if len(original) > 0 and original.isalpha():
if original[0]in vowels:
print original()+"ay"
else:
print original[1:]+original[0]+"ay"
else:
print 'empty'


This is what I ended up with, anyway I have to go sleep.



There are always a lot of ways to write something; there is no "best way." It always depends on what you want to achieve with your code.

However, there are a lot of "bad ways."

One such way is writing code with lots of redundancies and it's always frowned upon.

For example, if you call lower() on a string, then you check if the string has any uppercase letters. It even sounds redundant, no? as how can a lower cased string have uppercase letters anyways?

Using len(word) > 0 is redundant if you also have a isalpha() check, since isalpha fails on empty strings. (I think isspace() is unnecessary though and I'm not sure if isalpha() fails for sentences with spaces in them, as our assumption is this program will only be fed words and not strings.)

So those are some good practices.

Other good practices is also making use of special functions inside the programming language you're working on; in this example, "element in list", instead of writing your own ways to check it, like where you used "first_letter == ... ".


In Python, the favourite practice is usually make your code as verbose and succinct as possible. Make it highly readable, but also very short and sweet. If I read through any part of your code, it should be obvious what you're doing, but also that your way of doing that is the fastest and most maintainable way to do it.

When we reversed your if...else position, we did it because now it's perfectly clear when you handle your errors and what you determined are errors. They're in the same block of code.


The best way to learn is actually just to code a lot a lot in the language, write lots of mini-programs, keep up-to-date knowledge of the language, and look at good stacks exchange solutions to your problems and why they're good.

If you want to learn about programming in general, scope, exceptions and such, there are some books, but best practices come from just writing a lot of code, and debugging your horrible code when it doesn't work.


tl;dr It's a lot more about understanding why you would use one piece of code instead of an another.


I understand the redundancies, silly of me. What do you mean by element in list? IF, ELSE, makes sense. Thanks. I already have an idea for something I'd like to program. But first I am going to finish the python codeacademy courses before I start.


He means what you proposed above with


original[0] in ['a', 'e', 'i', 'o', 'u']


Using list inclusion is an more concise and idiomatic way (i.e., what Python experts would do) to express an equality check among several options. For example, these two pieces of code are equivalent:


if response.lower() == 'yes' or response.lower() == ' no':


and


if response.lower() in ['yes', 'no']:


But the second is preferred in Python.
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
December 04 2012 16:26 GMT
#4157
Ok, I figured it was that, I just wanted a more elaborate explanation. Thank you. I have almost zero knowledge of programming terminology. I'll slowly learn I guess.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2012-12-05 00:33:18
December 05 2012 00:30 GMT
#4158
What do you think guys, is newCachedThreadPool() very efficient to use?

http://docs.oracle.com/javase/1.5.0/docs/api/java/util/concurrent/Executors.html#newCachedThreadPool()

I know what description says, but has anyone actually felt the difference?
endy
Profile Blog Joined May 2009
Switzerland8970 Posts
Last Edited: 2012-12-05 08:11:00
December 05 2012 04:57 GMT
#4159
Hey guys,

I'm very rusty with Java programming, but I cannot figure out my issue. I wrote a class that connects to a relational database and because I can potentially use various JDBC drivers, I went for a Class.forName() rather than an import.

In my code I use :
Class.forName(this.properties.getDriver());

and this.properties.getDriver() returns "com.microsoft.sqlserver.jdbc.SQLServerDriver"

I compiled using -cp and the correct path to the sqljdbc.jar file.

During execution I get a classNotFoundException com.microsoft.sqlserver.jdbc.SQLServerDriver

I tried to use import com.microsoft.sqlserver.jdbc.SQLServerDriver; at the beginning of the code and it compiles without error, so that proves I link to sqljdbc.jar correctly during compilation right ?

Thanks


edit : I compiled with Netbeans and it works, still don't get what I did wrong earlier o_o
ॐ
ghrur
Profile Blog Joined May 2009
United States3786 Posts
December 05 2012 08:41 GMT
#4160
Hi guys,

So next semester, I will be learning Python as part of a Comp Sci class I'll be taking. At the end of the class, we'll have to make a project primarily in Python. I've heard about this from my friends who're taking it now, so I've started contemplating the project. One of the thoughts I had was making an AI of sorts to play BW. It'd probably work through BWAPI. The problem is, a lot of my friends also say Python is too slow to be able to make the calculations for a game AI.

Anyway, I'd just like some opinions on if it'd be possible to build a BW AI-bot in python.

Thanks!
darkness overpowering
Prev 1 206 207 208 209 210 1032 Next
Please log in or register to reply.
Live Events Refresh
WardiTV Invitational
16:00
WardiTV 10 Group C Replay Cast
TaKeTV 441
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 316
UpATreeSC 113
EmSc Tv 11
StarCraft: Brood War
Britney 24482
Shuttle 595
Dewaltoss 147
HiyA 58
910 49
Rock 22
Trap 20
yabsab 14
Terrorterran 9
Dota 2
Gorgc6600
Fuzer 235
BananaSlamJamma223
febbydoto34
Counter-Strike
fl0m4876
Other Games
summit1g4252
Grubby2607
Beastyqt694
B2W.Neo492
KnowMe302
C9.Mang0184
Hui .160
ArmadaUGS117
QueenE69
Trikslyr45
Organizations
Dota 2
PGL Dota 2 - Main Stream13173
StarCraft: Brood War
Afreeca ASL 304
Other Games
BasetradeTV42
StarCraft 2
EmSc Tv 11
EmSc2Tv 11
[ Show 14 non-featured ]
StarCraft 2
• StrangeGG 50
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• HerbMon 30
• 80smullet 20
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 6011
League of Legends
• Nemesis2589
Other Games
• Shiphtur280
Upcoming Events
The PiG Daily
3h 13m
ByuN vs Rogue
herO vs SHIN
Serral vs TBD
Clem vs TBD
CranKy Ducklings
15h 13m
AI Arena Tournament
22h 13m
BSL: Ladder Tournament
1d
GSL
1d 13h
Yamato Cup
1d 20h
BSL Open Qualifier
2 days
BSL Open Qualifier
2 days
Replay Cast
2 days
Afreeca Starleague
2 days
Soma vs Jaedong
[ Show More ]
WardiTV Weekly
2 days
Monday Night Weeklies
2 days
Sparkling Tuna Cup
3 days
Afreeca Starleague
3 days
Leta vs Soulkey
PiGosaur Cup
4 days
Kung Fu Cup
4 days
The PondCast
5 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-09-23
Blizzard Classic Cup 2026
Big Dog Cup 2026 Div 1

Ongoing

ASL Season 22
CSL 2026 AUTUMN (S22)
Acropolis #5
Acropolis #5 - GSA
Calamity Invitational
1win Private Club #1
Logitech G Play Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3

Upcoming

Acropolis #5 - GSB
Acropolis #5 - GSC
BSL Season 23
SC4ALL II: Brood War
BSL 23: Non-Korean Championship
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Custodian Cup
Copium Cup
PGL Major Singapore 2026
Stake Ranked Episode 6
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.