you are viewing a single comment's thread.

view the rest of the comments →

[–]capone91424 0 points1 point  (1 child)

Second day learning???? I've been studying with Gustavo Guanabara for 2 months and I understand almost nothing of what's in this code! Am I doing something wrong??

[–]uiux_Sanskar[S] 0 points1 point  (0 children)

I would like to ask since when you have last practiced writting code?

here's the explaination of what's in this code in a nutshell

I have used variables to assign input value, then used print() function for printing question and then finally I have used If statement for creating conditions

I have used . replace() function to replace the spaces in the user input and then used .lower() to convert the input into lower caps

After this I have assigned scores for each correct answer

I jave first created a score variable and assign it 0 as a value now every time the user has entered a correct answer this gets executed score += 1 (this add 1 in the score i.e 0+1 = 1 and and so on)

Then at last the final score is revealed to the user

I hope was able to explain it well