• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 10:07
CET 16:07
KST 00:07
  • 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
RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13
Community News
[TLMC] Fall/Winter 2025 Ladder Map Rotation12Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7
StarCraft 2
General
Mech is the composition that needs teleportation t RotterdaM "Serral is the GOAT, and it's not close" RSL Season 3 - RO16 Groups C & D Preview [TLMC] Fall/Winter 2025 Ladder Map Rotation TL.net Map Contest #21: Winners
Tourneys
RSL Revival: Season 3 Sparkling Tuna Cup - Weekly Open Tournament Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle Master Swan Open (Global Bronze-Master 2)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
FlaSh on: Biggest Problem With SnOw's Playstyle BW General Discussion What happened to TvZ on Retro? Brood War web app to calculate unit interactions [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL21] RO32 Group D - Sunday 21:00 CET [BSL21] RO32 Group C - Saturday 21:00 CET
Strategy
PvZ map balance Current Meta Simple Questions, Simple Answers How to stay on top of macro?
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Nintendo Switch Thread Clair Obscur - Expedition 33 Beyond All Reason
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
Things Aren’t Peaceful in Palestine US Politics Mega-thread Russo-Ukrainian War Thread Artificial Intelligence Thread Canadian Politics Mega-thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2286 users

The Big Programming Thread - Page 826

Forum Index > General Forum
Post a Reply
Prev 1 824 825 826 827 828 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.
Mr. Wiggles
Profile Blog Joined August 2010
Canada5894 Posts
January 10 2017 05:25 GMT
#16501
from collections import Counter

xs = [5, 5, 3, 2, 2]

counts = Counter(xs)

output = [x for x in xs if counts[x] > 1]

The above doesn't require that you sort the list (or that it's already sorted). Assuming Counter() is implemented efficiently, it should run in O(n).

Reference: https://docs.python.org/3/library/collections.html#collections.Counter
you gotta dance
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-01-10 15:00:50
January 10 2017 14:43 GMT
#16502
Now I want to ask about classes in Python. The tutorial I was reading didn't even touch them! So i thought maybe they don't exist? But then how does inheritance work?

So I looked it up and they do exist? But it seems that unlike java, they are not a requirement.

so, separate .py files are "modules", which you can import and use in other python files?

It seems like modules in python are a lot like upper level classes in java.

But classes in python are also similar to classes in java in that you instantiate them? Is that the actual purpose of classes in python? Object instantiation? (or I guess more specifically, defining new types of objects for instantiation)

Also in python if I define a variable at the class level, this variable isn't global, right? It needs to be at the level above that?
Acrofales
Profile Joined August 2010
Spain18117 Posts
January 10 2017 15:12 GMT
#16503
Classes work almost exactly the same as in Java. You're just not forced to use them. And yes, you can have multiple classes together in a single file (module). Modules are nothing like classes. They are more like Java packages, but with some extra functionality (namely, they can contain code that isn't in classes), but most importantly, you don't inherit jack shit from modules.

Scoping in Python is pretty simple and described in the manual, but here's a SO answer that lifts the right part from the manual: http://stackoverflow.com/questions/291978/short-description-of-scoping-rules

Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-01-10 15:56:09
January 10 2017 15:52 GMT
#16504
I am so confused about global variables. I am told this should be intuitive but I don't understand how to do something.

I want a global variable, let's call it myWord.

I want a function that modifies myWord. let's call it myFunction

so my python file could look like


myWord = ""

def myFunction():
global myWord
myWord = myWord + "more words"


this is basically what I am trying to do.
But python doesn't like this. it tells me I need to define(initialize?) the global variable within the function

But that's what I don't understand! if I do that, if I say myWord = "" in my function, then what I am trying to do will be reset every time I run the function!

Also why the heck would I need to initialize it in there anyways, isn't the entire point that it's a global variable and it was created at the global level?
Acrofales
Profile Joined August 2010
Spain18117 Posts
January 10 2017 16:34 GMT
#16505
On January 11 2017 00:52 travis wrote:
I am so confused about global variables. I am told this should be intuitive but I don't understand how to do something.

I want a global variable, let's call it myWord.

I want a function that modifies myWord. let's call it myFunction

so my python file could look like


myWord = ""

def myFunction():
global myWord
myWord = myWord + "more words"


this is basically what I am trying to do.
But python doesn't like this. it tells me I need to define(initialize?) the global variable within the function

But that's what I don't understand! if I do that, if I say myWord = "" in my function, then what I am trying to do will be reset every time I run the function!

Also why the heck would I need to initialize it in there anyways, isn't the entire point that it's a global variable and it was created at the global level?

Works just fine for me... you sure you don't have some other code cluttering up your file?
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-01-10 16:44:30
January 10 2017 16:43 GMT
#16506
On January 11 2017 01:34 Acrofales wrote:
Show nested quote +
On January 11 2017 00:52 travis wrote:
I am so confused about global variables. I am told this should be intuitive but I don't understand how to do something.

I want a global variable, let's call it myWord.

I want a function that modifies myWord. let's call it myFunction

so my python file could look like


myWord = ""

def myFunction():
global myWord
myWord = myWord + "more words"


this is basically what I am trying to do.
But python doesn't like this. it tells me I need to define(initialize?) the global variable within the function

But that's what I don't understand! if I do that, if I say myWord = "" in my function, then what I am trying to do will be reset every time I run the function!

Also why the heck would I need to initialize it in there anyways, isn't the entire point that it's a global variable and it was created at the global level?

Works just fine for me... you sure you don't have some other code cluttering up your file?


oh wow really?

well here is the actual code (im still playing that code challenge solving game, it's pretty fun)


def recall_password(cipher_grille, ciphered_password):

result = ""



def doIt(temp):
global result
j = 0
for w in temp:
j += 1
i = 0
for c in w:
i += 1
if c == "X":
thisString = ciphered_password[j-1]
result = result + thisString[i-1]

doIt(cipher_grille)


here is the error it gives


NameError: name 'result' is not defined
doIt, 18
recall_password, 20


line 18 is: result = result + thisString[i-1]
mantequilla
Profile Blog Joined June 2012
Turkey779 Posts
Last Edited: 2017-01-10 16:45:36
January 10 2017 16:45 GMT
#16507
+ Show Spoiler +
On January 11 2017 00:52 travis wrote:
I am so confused about global variables. I am told this should be intuitive but I don't understand how to do something.

I want a global variable, let's call it myWord.

I want a function that modifies myWord. let's call it myFunction

so my python file could look like


myWord = ""

def myFunction():
global myWord
myWord = myWord + "more words"


this is basically what I am trying to do.
But python doesn't like this. it tells me I need to define(initialize?) the global variable within the function

But that's what I don't understand! if I do that, if I say myWord = "" in my function, then what I am trying to do will be reset every time I run the function!

Also why the heck would I need to initialize it in there anyways, isn't the entire point that it's a global variable and it was created at the global level?



did you jump to python from java :D what about not using global variables? more than often they are an antipattern.
Age of Mythology forever!
Acrofales
Profile Joined August 2010
Spain18117 Posts
Last Edited: 2017-01-10 16:47:34
January 10 2017 16:45 GMT
#16508
result isn't global. It's in the enclosing scope. And to be more specific, your global variable result is defined when you say "global result", but you haven't initialized it anywhere.
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
Last Edited: 2017-01-10 16:50:05
January 10 2017 16:47 GMT
#16509
Yeah. Thats what i get:


myWord = ""

def myFunction():
global myWord
myWord = myWord + "more words"

myFunction()

print(myWord)


as expected it prints
more words
to terminal

And as pointed out in Your code "result" isnt global. It is local to "def recall_password" function.
Pathetic Greta hater.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-01-10 16:55:40
January 10 2017 16:53 GMT
#16510
ohhhhhhh right, god im dumb

thanks guys

i forgot that the entire block of code was put in the website's function (def recall_password(cipher_grille, ciphered_password)



On January 11 2017 01:45 mantequilla wrote:
+ Show Spoiler +
On January 11 2017 00:52 travis wrote:
I am so confused about global variables. I am told this should be intuitive but I don't understand how to do something.

I want a global variable, let's call it myWord.

I want a function that modifies myWord. let's call it myFunction

so my python file could look like


myWord = ""

def myFunction():
global myWord
myWord = myWord + "more words"


this is basically what I am trying to do.
But python doesn't like this. it tells me I need to define(initialize?) the global variable within the function

But that's what I don't understand! if I do that, if I say myWord = "" in my function, then what I am trying to do will be reset every time I run the function!

Also why the heck would I need to initialize it in there anyways, isn't the entire point that it's a global variable and it was created at the global level?



did you jump to python from java :D what about not using global variables? more than often they are an antipattern.


I don't know how to design my program in a way where I don't have to use global variables
phar
Profile Joined August 2011
United States1080 Posts
January 10 2017 17:09 GMT
#16511
Return more things is one quick and easy way generally(which in Python is pretty easy).
Who after all is today speaking about the destruction of the Armenians?
Manit0u
Profile Blog Joined August 2004
Poland17432 Posts
January 10 2017 19:19 GMT
#16512
On January 11 2017 02:09 phar wrote:
Return more things is one quick and easy way generally(which in Python is pretty easy).


Yeah, the ability to return more than one thing from a Python function has always amazed and baffled me at the same time.
Time is precious. Waste it wisely.
RoomOfMush
Profile Joined March 2015
1296 Posts
January 10 2017 20:10 GMT
#16513
On January 11 2017 04:19 Manit0u wrote:
Show nested quote +
On January 11 2017 02:09 phar wrote:
Return more things is one quick and easy way generally(which in Python is pretty easy).


Yeah, the ability to return more than one thing from a Python function has always amazed and baffled me at the same time.

How?
mantequilla
Profile Blog Joined June 2012
Turkey779 Posts
January 10 2017 20:44 GMT
#16514
apparently it's one of the many syntactic sugars of python


>>> def foo():
... return 1, 2, 3, 4 # Returns a tuple
>>> foo()
(1, 2, 3, 4)

>>> a, b, c, d = foo()
>>> a
1
>>> b
2
>>> c
3
>>> d
4


not my cup of tea though. Better return a well defined object
Age of Mythology forever!
RoomOfMush
Profile Joined March 2015
1296 Posts
January 10 2017 20:50 GMT
#16515
I meant: How is that amazing and baffling?
Returning one object is just as good as returning many. If worst comes to worst return an array of objects. Not a clean solution by any definition but 100% functional.
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
January 11 2017 08:06 GMT
#16516
Since i know only python i have to ask. Which langauges limit function to returning one item?
Pathetic Greta hater.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
January 11 2017 08:43 GMT
#16517
On January 11 2017 17:06 Silvanel wrote:
Since i know only python i have to ask. Which langauges limit function to returning one item?

Most popular languages only have single return values, as far as I know. That single value still can be a tuple or (reference/pointer to) anything you want though.
If you have a good reason to disagree with the above, please tell me. Thank you.
teamamerica
Profile Blog Joined July 2010
United States958 Posts
January 11 2017 08:48 GMT
#16518
On January 11 2017 17:06 Silvanel wrote:
Since i know only python i have to ask. Which langauges limit function to returning one item?


This whole discussion is confused because without defining what an "item" is it's meaningless.


>>> def test():
... return 1,2
...
>>> test()
(1, 2)
>>> type(_)
<class 'tuple'>


You're still returning one item, the item just happens to be a container. Python has some syntactic sugar around creating tuples and destructing tuples, such that if you have a collection of N items on rhs of assignment, you can assign it to [x0..xN) variables on the left hand side. Other languages have more advanced pattern matching, e.g. any trivial haskell example that matches (x:xs) on a list.

You can work around the lack of tuples in Java with a tuple object, but you can't do the variable destructing on the return value such that you assign multiple variables to the items of your collection in one line.

Go is a language where you can really return multiple values as a special quirk of the language, where you're not returning a tuple. They trade off making multiple returns a special case for saving complexity of implementing tuples + maybe language designers just don't like them.
RIP GOMTV. RIP PROLEAGUE.
Manit0u
Profile Blog Joined August 2004
Poland17432 Posts
January 11 2017 09:46 GMT
#16519
I have a bit of a problem with the DB:


A:
has one B
belongs to C

B:
belongs to A
has many C

C:
belongs to B


How do I set my cascades properly so that when I delete A all of B and C are also removed? Right now I'm getting an error that C can't be deleted because it's still referenced by A...
Time is precious. Waste it wisely.
Acrofales
Profile Joined August 2010
Spain18117 Posts
January 11 2017 09:55 GMT
#16520
On January 11 2017 18:46 Manit0u wrote:
I have a bit of a problem with the DB:


A:
has one B
belongs to C

B:
belongs to A
has many C

C:
belongs to B


How do I set my cascades properly so that when I delete A all of B and C are also removed? Right now I'm getting an error that C can't be deleted because it's still referenced by A...

Looks like you created a deadlock situation. Change the restrictions on your DB, or accept that there will be undeletable entries. Your only other option is a hack where you add a C called "tobedeleted" or something, and change A to belong to that first, then cascade your delete.
Prev 1 824 825 826 827 828 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 1h 53m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SteadfastSC 350
TKL 341
Reynor 49
mcanning 46
StarCraft: Brood War
Britney 32905
Rain 4173
actioN 1647
Horang2 1446
Jaedong 1184
Shuttle 522
Stork 472
EffOrt 303
firebathero 261
Leta 114
[ Show more ]
Barracks 105
Shinee 97
ggaemo 96
Hyun 80
PianO 66
LaStScan 65
JYJ49
Shine 49
Mong 31
Rock 25
Movie 24
ToSsGirL 22
Bale 20
zelot 15
HiyA 10
soO 10
sorry 8
Sacsri 7
Dota 2
Gorgc5504
qojqva1773
Dendi1127
XcaliburYe145
LuMiX0
Counter-Strike
oskar115
Heroes of the Storm
Khaldor136
Other Games
B2W.Neo1782
DeMusliM470
Hui .333
Lowko306
Pyrionflax240
Fuzer 206
febbydoto6
Organizations
Dota 2
PGL Dota 2 - Main Stream8720
PGL Dota 2 - Secondary Stream3341
Other Games
EGCTV119
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• Berry_CruncH154
• StrangeGG 72
• IndyKCrew
• AfreecaTV YouTube
• intothetv
• Kozan
• sooper7s
• LaughNgamezSOOP
• Migwel
StarCraft: Brood War
• Michael_bg 3
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 2112
• Ler59
League of Legends
• Nemesis2754
Other Games
• WagamamaTV236
Upcoming Events
IPSL
1h 53m
ZZZero vs rasowy
Napoleon vs KameZerg
OSC
3h 53m
BSL 21
4h 53m
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
18h 53m
RSL Revival
18h 53m
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
20h 53m
Cure vs herO
Reynor vs TBD
WardiTV Korean Royale
20h 53m
BSL 21
1d 4h
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
IPSL
1d 4h
Dewalt vs WolFix
eOnzErG vs Bonyth
Replay Cast
1d 7h
[ Show More ]
Wardi Open
1d 20h
Monday Night Weeklies
2 days
WardiTV Korean Royale
2 days
BSL: GosuLeague
3 days
The PondCast
3 days
Replay Cast
4 days
RSL Revival
4 days
BSL: GosuLeague
5 days
RSL Revival
5 days
WardiTV Korean Royale
5 days
RSL Revival
6 days
WardiTV Korean Royale
6 days
Liquipedia Results

Completed

Proleague 2025-11-14
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
CSCL: Masked Kings S3
SLON Tour Season 2
RSL Revival: Season 3
META Madness #9
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
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 © 2025 TLnet. All Rights Reserved.