Python Tutorial for Beginners #18 - Test Your Python Knowledge: Quiz with Answers!

preview_player
Показать описание
Incorporate everything you have learnt on this tutorial with a mini quiz! The questions aren't designed to discourage you; they're nice, easy and come with full solutions (with explanations) at the end!

🔔NEW videos, tutorials and projects EVERY week so subscribe and hit the bell button so you don't miss an update!

▶️Watch our full Python tutorial course here:

▶️Watch our Python Projects tutorials playlist here:

👊🖐✌️Why not teach yourself how to code Rock, Paper, Scissors in Python!
Video here:

Time Stamps:
Question 1: 1:41
Question 1 - Solution: 3:46
Question 2: 2:01
Question 2 - Solution: 4:57
Question 3: 2:39
Question 3 - Solution: 6:43
Question 4: 2:53
Question 4 - Solution: 7:50
Question 5: 2:59
Question 5 - Solution: 8:20
Question 6: 3:03
Question 6 - Solution: 10:22
Question 7: 3:18
Question 7 - Solution: 12:00
Bonus point if you noticed that the loop does not end! We then change n + 1 to n - 1!
Question 8: 3:25
Question 8 - Solution: 12:46

🔗 Social Media Links 🔗

💸 Donations 💸
⬇️Any donations are gratefully received & all donations go straight back into this channel!⬇️

⭐️ Hashtags ⭐️
#CodeOfTheFuture #WomenWhoCode #Python #Coding #Programming #Tutorials

Subscribers - 621
Рекомендации по теме
Комментарии
Автор

I am a beginner in python and this is a really helpful video.

sunsetdrop
Автор

You definetly teached me how to do something in Python! Thank you :D

Luucube
Автор

Find the error: n=n+5
It will create an infinite loop so we should do n=n-1 instead

epikherolol
Автор

thank you for your videos it helped me learn so much

null
Автор

I have watched all your tutorials thanks to Bright Network and now I am here for more, thanks a lot for your great work! :)

Maria-lkls
Автор

Spotting the error gives infinite loop for n = n+1 cuz n>0
anyways
i really want to learn matplotlib,
I LOVE your videos :)

roshanpoudel
Автор

Hii Ellie hope you are doing good. 👍
Now, I went through your Beginners program, I shall say the tutorial was good. But for me as a beginner who has not zero but minus knowledge in any sort of coding in this tutorial I found myself reading sentences without any knowledge of Alphabets and grammar.
Although, 🤓🧐 You are good at teaching.
Thank you for the efforts.👏👏
As now i am intrested in learning python, I will be surfing other channels for learning Alphabet and grammar of Python. 😎

anishnair
Автор

Thank you very much. As for Question 7, the loop is infinite as the variable n = 5 and when looping the condition will be always greater than 0 as in the loop `n = n + 1` so this will not end. I think this should be `n = n - 1`

KhalilYasser