• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 03:19
CEST 09:19
KST 16:19
  • 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
[ASL19] Finals Recap: Standing Tall10HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Weekly Cups (June 30 - July 6): Classic Doubles4[BSL20] Non-Korean Championship 4x BSL + 4x China9Flash Announces Hiatus From ASL66Weekly Cups (June 23-29): Reynor in world title form?14FEL Cracov 2025 (July 27) - $8000 live event22
StarCraft 2
General
The GOAT ranking of GOAT rankings How Esports Is Reshaping the Future of Competitive Weekly Cups (June 30 - July 6): Classic Doubles The SCII GOAT: A statistical Evaluation Weekly Cups (June 23-29): Reynor in world title form?
Tourneys
RSL: Revival, a new crowdfunded tournament series FEL Cracov 2025 (July 27) - $8000 live event Sparkling Tuna Cup - Weekly Open Tournament WardiTV Mondays Korean Starcraft League Week 77
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 481 Fear and Lava Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma
Brood War
General
i aint gon lie to u bruh... BGH Auto Balance -> http://bghmmr.eu/ ASL20 Preliminary Maps [ASL19] Finals Recap: Standing Tall SC uni coach streams logging into betting site
Tourneys
[BSL20] Non-Korean Championship 4x BSL + 4x China [BSL20] Grand Finals - Sunday 20:00 CET CSL Xiamen International Invitational The Casual Games of the Week Thread
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Path of Exile What do you want from future RTS games? 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
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
Stop Killing Games - European Citizens Initiative Summer Games Done Quick 2025! US Politics Mega-thread Russo-Ukrainian War Thread Summer Games Done Quick 2024!
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
Formula 1 Discussion 2024 - 2025 Football Thread NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
momentary artworks from des…
tankgirl
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
StarCraft improvement
iopq
Customize Sidebar...

Website Feedback

Closed Threads



Active: 673 users

The Big Programming Thread - Page 826

Forum Index > General Forum
Post a Reply
Prev 1 824 825 826 827 828 1031 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
Spain17971 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
Spain17971 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
Spain17971 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
Poland4725 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
Poland17244 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
Poland4725 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
Poland17244 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
Spain17971 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 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 2h 42m
[ Submit Event ]
Live Streams
Refresh
StarCraft: Brood War
GuemChi 1256
actioN 1009
Tasteless 243
Leta 234
PianO 232
Soma 123
Dewaltoss 71
Movie 36
Sacsri 32
EffOrt 31
[ Show more ]
Free 27
yabsab 26
Bale 18
Dota 2
ODPixel304
XcaliburYe257
League of Legends
JimRising 640
Counter-Strike
Stewie2K1778
shoxiejesuss22
Other Games
summit1g9494
SortOf117
Mew2King89
Liquid`RaSZi56
Organizations
Other Games
gamesdonequick12603
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Berry_CruncH366
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota2114
League of Legends
• Rush1431
• Lourlo1188
• HappyZerGling136
Upcoming Events
Sparkling Tuna Cup
2h 42m
WardiTV European League
8h 42m
MaNa vs sebesdes
Mixu vs Fjant
ByuN vs HeRoMaRinE
ShoWTimE vs goblin
Gerald vs Babymarine
Krystianer vs YoungYakov
PiGosaur Monday
16h 42m
The PondCast
1d 2h
WardiTV European League
1d 4h
Jumy vs NightPhoenix
Percival vs Nicoract
ArT vs HiGhDrA
MaxPax vs Harstem
Scarlett vs Shameless
SKillous vs uThermal
uThermal 2v2 Circuit
1d 8h
Replay Cast
1d 16h
RSL Revival
2 days
ByuN vs SHIN
Clem vs Reynor
Replay Cast
2 days
RSL Revival
3 days
Classic vs Cure
[ Show More ]
FEL
3 days
RSL Revival
4 days
FEL
4 days
FEL
4 days
CSO Cup
4 days
BSL20 Non-Korean Champi…
4 days
Bonyth vs QiaoGege
Dewalt vs Fengzi
Hawk vs Zhanhun
Sziky vs Mihu
Mihu vs QiaoGege
Zhanhun vs Sziky
Fengzi vs Hawk
Sparkling Tuna Cup
5 days
RSL Revival
5 days
FEL
5 days
BSL20 Non-Korean Champi…
5 days
Bonyth vs Dewalt
QiaoGege vs Dewalt
Hawk vs Bonyth
Sziky vs Fengzi
Mihu vs Zhanhun
QiaoGege vs Zhanhun
Fengzi vs Mihu
Liquipedia Results

Completed

BSL Season 20
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL 2v2 Season 3
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Jiahua Invitational
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
CSL Xiamen Invitational
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
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.