for-loop

Python for loop through nested dictionary question?

Python for loop through nested dictionary question? Question: Trying to loop through a nested dictionary and want to store values into name, age and occupation. Without manually creating those variables within the for loop. Is this even possible? Just trying to create cleaner looking code. Thank you. people = { 1: {"name": "Simon", "age": 20, …

Total answers: 3

Dataframes Calculate Multiple Columns Based one other Column – for Loop

Dataframes Calculate Multiple Columns Based one other Column – for Loop Question: I’m working with multiple data frames and I am trying to perform a change the values of columns 3-9 to their value divided by the value of the third column which contains a population. I could run it manually on a single column, …

Total answers: 1

Print the Number series in Pyhon

Print the Number series in Pyhon Question: Help me to solve this number series question: input : 5 Output: 2 3 4 4 5 6 5 6 7 8 6 7 8 9 10 My program : rows = 6 # number of rows in the pattern start_num = 2 # starting number for the …

Total answers: 3

What is n in the for loop that begins: "for n in sequence:"

What is n in the for loop that begins: "for n in sequence:" Question: I’m wondering what the technical description is of the variable n in a for loop that begins for n in sequence. I suppose my question is about nomenclature. Would it be accurate to say that it’s a temporary named variable that …

Total answers: 2

For loop with range in django template

For loop with range in django template Question: How can I make a for loop with range function in django template? I want to search in three lists by using this structure. I tried this and it didn’t work: {% for i in range(number) %} {{ my_list.i }} {% endfor %} Asked By: mhn || …

Total answers: 1

Looping through dictionary and updating values

Looping through dictionary and updating values Question: I would like to cycle through a list of questions and for each answer update the key-value pair in the corresponding position. So for the first iteration, it presents the first question in the list and updates the first key-value pair in a dictionary. Right now the below …

Total answers: 1

Nested dictionary for loop with def (INDENTENTION PROBLEM)

Nested dictionary for loop with def (INDENTENTION PROBLEM) Question: I am learning Python with the 2°Ed. Automate the boring stuff with python, and I came across with a indentention problem. Can someone explain what I am doing wrong? I am trying to add a indentention after the for loop to insert the num_brought value, but …

Total answers: 1

Python – Assesing each line in a file against an IF

Python – Assesing each line in a file against an IF Question: The below works for a single ip or fqdn, but for a list of assets its failing and assigning them all as FQDNs. #!/usr/bin/env python import argparse import ipaddress import re def parse_args(): # Assess arguments parser = argparse.ArgumentParser(description=’do some sh*t’) parser.add_argument(‘-T’, required=True, …

Total answers: 1