On Fri, Jul 12, 2019 at 2:30 PM Aldwin Pollefeyt
wrote:
>
> Wow, I'm so sorry I answered on the question : "How do you replace a
> variable with its value". For what i understood with the example values,
> CrazyVideoGamez wants 3 variables named like the meal-names in dictionary.
> Yes, it's not s
Wow, I'm so sorry I answered on the question : "How do you replace a
variable with its value". For what i understood with the example values,
CrazyVideoGamez wants 3 variables named like the meal-names in dictionary.
Yes, it's not secure unless you work with your own dataset (just like
sending your
Aldwin Pollefeyt writes:
> dinner = {'Starters':['Fried Calamari', 'Potted crab'],'Main
> Course':['Fish', 'Meat'], 'Desert':['Cake', 'Banana Split']}
>
> # Don't ask where I got the dinner from
>
> for meal in dinner.keys():
> exec(meal.replace(' ','_') + ' = list(dinner[meal])')
>
> print(S
On 12/07/19 1:52 PM, Hla Kyi via Python-list wrote:
Dear Sir/ Madam,
1. I try to modify, some of the check boxes can not be selected. 2. I try to uninstall,
"successfully uninstall" message is come out. When I exit it "if you have any problem, please
contact python-list@python.org " me
Dear Sir/ Madam,
1. I try to modify, some of the check boxes can not be selected. 2. I
try to uninstall, "successfully uninstall" message is come out. When I exit it
"if you have any problem, please contact python-list@python.org " message is
come out. I install Python 3.7.2 at my la
On Thu, 11 Jul 2019 06:54:21 +0100, Debasree Banerjee wrote:
>
> I have a dataset like this:
>
> RecTime
>
> NO2_RAW
>
> NO2
>
> LAQN_NO2
>
> 10980
>
> 06/6/19 01:45
>
> 17.9544
[snip]
>
> Can someone please help?
Your question might appear intelligibly on the mailing list (I can't tell),
but
On Fri, Jul 12, 2019 at 4:37 AM Terry Reedy wrote:
>
> On 7/11/2019 12:51 AM, Aldwin Pollefeyt wrote:
> > dinner = {'Starters':['Fried Calamari', 'Potted crab'],'Main
> > Course':['Fish', 'Meat'], 'Desert':['Cake', 'Banana Split']}
> >
> > # Don't ask where I got the dinner from
> >
> > for meal i
On 11/07/2019 05:51, Aldwin Pollefeyt wrote:
dinner = {'Starters':['Fried Calamari', 'Potted crab'],'Main
Course':['Fish', 'Meat'], 'Desert':['Cake', 'Banana Split']}
# Don't ask where I got the dinner from
for meal in dinner.keys():
exec(meal.replace(' ','_') + ' = list(dinner[meal])')
p
On 7/11/2019 12:51 AM, Aldwin Pollefeyt wrote:
dinner = {'Starters':['Fried Calamari', 'Potted crab'],'Main
Course':['Fish', 'Meat'], 'Desert':['Cake', 'Banana Split']}
# Don't ask where I got the dinner from
for meal in dinner.keys():
exec(meal.replace(' ','_') + ' = list(dinner[meal])')
Hi,
Afraid the formatting gremlins got to your data before we saw it,
so I am taking a guess at what you want to achieve.
On 11/07/19 06:54, Debasree Banerjee wrote:
I want to calculate the difference between LAQN_NO2 and NO2_RAW everyday at
04:00 and add that value to NO2_RAW values in all ro
Hi,
I have a dataset like this:
RecTime
NO2_RAW
NO2
LAQN_NO2
10980
06/6/19 01:45
17.9544
53.4626
17.7
10981
06/6/19 01:45
17.9444
53.4434
17.7
10982
06/6/19 01:45
17.9211
53.3988
17.7
I want to calculate the difference between LAQN_NO2 and NO2_RAW ever
dinner = {'Starters':['Fried Calamari', 'Potted crab'],'Main
Course':['Fish', 'Meat'], 'Desert':['Cake', 'Banana Split']}
# Don't ask where I got the dinner from
for meal in dinner.keys():
exec(meal.replace(' ','_') + ' = list(dinner[meal])')
print(Starters)
print(Main_Course)
print(Desert)
12 matches
Mail list logo