"Simon Says" is a memory game where "Simon" outputs a sequence of 10 characters (R, G, B, Y) and the user must repeat the sequence. Create a for loop that compares each character of the two strings. For each matching character, add one point to user_score. Upon a mismatch, end the loop. Sample output with inputs: 'RRGBRYYBGY' 'RRGBBRYBGY' User score: 4 Code writing challenge activity demo 461710 3116374.qx3zqy7 1 user_score = 0 2 simon_pattern = input() 3 user_pattern = input() 4 5 Your solution goes here ''' 6 7 print(f'User score: {user_score}')

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter5: Looping
Section: Chapter Questions
Problem 6RQ
icon
Related questions
Question
"Simon Says" is a memory game where "Simon" outputs a sequence of 10 characters (R, G, B, Y) and the user must repeat the
sequence. Create a for loop that compares each character of the two strings. For each matching character, add one point to
user_score. Upon a mismatch, end the loop.
Sample output with inputs: 'RRGBRYYBGY' 'RRGBBRYBGY'
User score: 4
Code writing challenge activity demo
461710.3116374.qx3zqy7
1 user_score = 0
2 simon_pattern
3 user_pattern
3456
4
TTV
=
=
input()
input()
5 Your solution goes here ""'
6
7 print (f'User score: {user_score}')
F
F
Transcribed Image Text:"Simon Says" is a memory game where "Simon" outputs a sequence of 10 characters (R, G, B, Y) and the user must repeat the sequence. Create a for loop that compares each character of the two strings. For each matching character, add one point to user_score. Upon a mismatch, end the loop. Sample output with inputs: 'RRGBRYYBGY' 'RRGBBRYBGY' User score: 4 Code writing challenge activity demo 461710.3116374.qx3zqy7 1 user_score = 0 2 simon_pattern 3 user_pattern 3456 4 TTV = = input() input() 5 Your solution goes here ""' 6 7 print (f'User score: {user_score}') F F
Expert Solution
Step 1

Introduction

For loop: A for loop is a control flow statement in Python that allows you to iterate over a sequence (such as a list, tuple, string, or dictionary) and perform a set of statements for each item in the sequence.

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Basics of loop
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,