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 5970899
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:26:28+00:00 2026-05-22T20:26:28+00:00

The class Item has a member function text() that returns a list of strings.

  • 0

The class Item has a member function text() that returns a list of strings.
The class Dictionary has a member function items() that returns a list of Items.
dict is an instance of Dictionary.
I want to test if all characters in all strings in all items in dict are ASCII.
I tried

all(ord(ch) < 128 for ch in s for s in item.text() for item in dict.items())

This gives the error message “global name ‘s’ not defined”.
What is the correct way?

  • 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-22T20:26:29+00:00Added an answer on May 22, 2026 at 8:26 pm

    The order of the for clauses needs to be the other way around. The innermost loop comes last, the outmost loop comes first.

    all(ord(ch) < 128 for item in dict.items() for s in item.text() for ch in s)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class Class which has a member std::list, I want to search
public class Item { ... } public class Order { public List<Item> Items ...
Supposing I have a class Item, which has three member variables: string name, decimal
Assuming I have a List<Stuff> listA that has some items in it. I create
Here's a curious one. I have a class A. It has an item of
I have a datastore model representing items in an ecommerce site: class Item(db.Model): CSIN
I have a class that contains a member object. I would like to call
I have a class that acts as an item in a tree: class CItem(
I have a model: class Item < ActiveRecord::Base Item has a property 'store' Based
I've got two models: Group and Item . An Item has a list of

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.