Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Str problem, not counting
#2
Hy I see you are not storing the input you are getting from the user.Try this
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')
    choice=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)
Refer to this article about Python incase you need to get your basics right.
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