Posts: 12
Threads: 6
Joined: Jun 2018
trials = 10000
successes = 0
for _ in np.arange(trials):
rolls = np.random.choice(dice, k)
if sum(rolls == 6) > 0:
successes = successes + 1
successes / trials in the code above, what does it mean to use _ after for?
for _ in np.arange(trials):
Posts: 75
Threads: 20
Joined: Jun 2018
(Jun-17-2018, 11:28 AM)tryingtolearnpython Wrote: trials = 10000 successes = 0 for _ in np.arange(trials): rolls = np.random.choice(dice, k) if sum(rolls == 6) > 0: successes = successes + 1 successes / trials in the code above, what does it mean to use _ after for? for _ in np.arange(trials):
_ is the variable in which the key values are stored. For iterates over the keys in a list. So for every key, there is one loop.
On every single instance of the loop, suppose it is at the starting key value, _ is set to the key it is iterating. So if you use print(_) then you will get the key.
_ is the name of the variable. You can change it to anything you want it's just a placeholder, like: Giraffe;Comet_Man and etc.
Posts: 8,151
Threads: 160
Joined: Sep 2016
Jun-17-2018, 11:57 AM
(This post was last modified: Jun-17-2018, 11:57 AM by buran.)
in python _ is valid variable name. As per convention _ variable name is used when the variable value doesn't matter. In your example you just need to loop 10000 times (i.e. 10000 trials), you don't care for the variable value and don't use it in the code elsewhere
Posts: 75
Threads: 20
Joined: Jun 2018
_ is also assigned the last mathematical call (ex: 2+2, _ is 4) in IDLE. _ should never be used as a variable.
Posts: 566
Threads: 10
Joined: Apr 2017
Jun-17-2018, 03:54 PM
(This post was last modified: Jun-18-2018, 04:25 AM by volcano63.)
(Jun-17-2018, 03:42 PM)Nwb Wrote: _ is also assigned the last mathematical call (ex: 2+2, _ is 4) in IDLE. _ should never be used as a variable.
It is assigned the value of the last executed expression that produces result which is not None - e.g. print and assignment will not set _ . It is often used as a placeholder variable by some people with some experience (me among them) - e.g., in IDEs it will prevent linters from screaming at you that you create an unused variable.
Please, try to grow beyond the newbie level before making sweeping statements
Test everything in a Python shell (iPython, Azure Notebook, etc.) - Someone gave you an advice you liked? Test it - maybe the advice was actually bad.
- Someone gave you an advice you think is bad? Test it before arguing - maybe it was good.
- You posted a claim that something you did not test works? Be prepared to eat your hat.
Posts: 4,220
Threads: 97
Joined: Sep 2016
(Jun-17-2018, 03:54 PM)volcano63 Wrote: It is often used as a placeholder variable by people with some experience (me among them)
And not by others with some experience (me among them).
Posts: 566
Threads: 10
Joined: Apr 2017
(Jun-17-2018, 06:35 PM)ichabod801 Wrote: (Jun-17-2018, 03:54 PM)volcano63 Wrote: It is often used as a placeholder variable by people with some experience (me among them)
And not by others with some experience (me among them).
Well, you don't have to, dear. My point was that using it is absolutely legit.
Test everything in a Python shell (iPython, Azure Notebook, etc.) - Someone gave you an advice you liked? Test it - maybe the advice was actually bad.
- Someone gave you an advice you think is bad? Test it before arguing - maybe it was good.
- You posted a claim that something you did not test works? Be prepared to eat your hat.
Posts: 4,220
Threads: 97
Joined: Sep 2016
Jun-17-2018, 08:47 PM
(This post was last modified: Jun-18-2018, 12:02 AM by ichabod801.)
(Jun-17-2018, 07:55 PM)volcano63 Wrote: Well, you don't have to, dear. My point was that using it is absolutely legit.
My apologies. That was not how your point came across to me.
Posts: 12
Threads: 6
Joined: Jun 2018
Good conversation going here, thanks everybody. I think I understand now thank you all very much. I'm new to Python and I'm trying to learn it from videos on edx so your input really helps thanks.
Posts: 75
Threads: 20
Joined: Jun 2018
(Jun-17-2018, 03:54 PM)volcano63 Wrote: (Jun-17-2018, 03:42 PM)Nwb Wrote: _ is also assigned the last mathematical call (ex: 2+2, _ is 4) in IDLE. _ should never be used as a variable. It is assigned the value of the last executed expression that produces result which is not None - e.g. print and assignment will not set _ . It is often used as a placeholder variable by some people with some experience (me among them) - e.g., in IDEs it will prevent linters from screaming at you that you create an unused variable. Please, try to grow beyond the newbie level before making sweeping statements
You can correct me but keep your comments to yourself. I don't need advice from people, especially people like you. :)
|