Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6640447
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:40:24+00:00 2026-05-25T23:40:24+00:00

Im curious as to why this happens. Im using Mako templates to iterate over

  • 0

Im curious as to why this happens. Im using Mako templates to iterate over a tuple, that contains a number of number of dictionaries, that in turn contain link information:

links = (
        {
            'path' : request.route_url('home'),
            'text' : 'Home'
        },
        {
            'path' : "http://www.microsoft.com",
            'text' : "Microsoft"
        }
    )

if i send the above to the view, everything works as expected, the links are displayed. If i remove the second link however:

links = (
            {
                'path' : request.route_url('home'),
                'text' : 'Home'
            }
)

i get an exception: TypeError: string indices must be integers, not str

if i put a comma after the end of the dictionary, things start working again. Can anyone explain what is going on?

Edit Mako template snippet

<nav>

       % for link in links:
        <a href="${link['path']}">${link['text']}</a>
       % endfor

      </nav>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T23:40:24+00:00Added an answer on May 25, 2026 at 11:40 pm

    if i put a comma after the end of the dictionary, things start working
    again. Can anyone explain what is going on?

    The comma makes the tuple. Without it you just have a single value in brackets.

    x = ({}) # brackets around a dict
    x = {}, # a 1-tuple
    x = ({},) # a 1-tuple in brackets
    

    Often it appears that the brackets are the notation for tuples, because they appear together so often. That’s only because for syntactic reasons, you often need the brackets when writing a tuple.

    When you write links = ({ ... }) you have only a dictionary, not a tuple. Python loops over it’s keys, so each link is a string, which you try to index by another string, resulting in the exception.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Curious, what happens when you return keyword this from a struct in C#? For
why this return 5,I'm curious about this the normal function have higher priority over
I've made this mistake a number of times - it happens when I'm working
I am curious to do what happens when you edit a post on this
I'm curious if this is even possible.
I've curious how this should be properly done. I ran a page im working
I'm curious if this is possible at all since a select * from html
I am curious why this code works: typedef struct test_struct { int id; }
I was told this by a coworker, and I was curious if this was
The SqlDataReader class offers a method called GetValues. What I find curious about this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.