Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Str problem, not counting
#1
Hello! I need some help, I really can't understand something. Wall
I try to count how many times 'a', 'b' or 'c' is introduced in 10 repetitions, using an i contor and range function for this.
When I debug the py file, says:
Error:
File "<input>", line 1, in <module> NameError: name 'a' is not defined
The problem is that 'the program' doesn't step over the input function, so the counting for a, b and c doesn't apply. Cry
Here is the code:
count_a = 0
count_b = 0
count_c = 0
char = ['a', 'b', 'c']
choice = '-'
for i in range(1, 11):
    print('Please choose a char from a to c')
    str(input(choice))
    if choice in char:
        print('You have chosen {}'.format(choice))
        count_a += 1
    elif choice in char:
        print(('You have chosen {}'.format(choice)))
        count_b += 1
    elif choice in char:
        print(('You have chosen {}'.format(choice)))
        count_c += 1
    # else:
    #     print('You have chosen an unavailable char, please try again')
print(count_a)
print(count_b)
print(count_c)
Please don't be rough to me... Angel
Reply


Messages In This Thread
Str problem, not counting - by Hann - Jul-28-2020, 01:37 PM
RE: Str problem, not counting - by hussainmujtaba - Jul-28-2020, 01:47 PM
RE: Str problem, not counting - by Hann - Jul-28-2020, 02:07 PM
RE: Str problem, not counting - by faaadz275 - Jul-28-2020, 02:39 PM
RE: Str problem, not counting - by deanhystad - Jul-28-2020, 03:46 PM
RE: Str problem, not counting - by Hann - Jul-28-2020, 06:23 PM
RE: Str problem, not counting - by deanhystad - Jul-28-2020, 07:10 PM
RE: Str problem, not counting - by Hann - Jul-29-2020, 07:58 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020