Python Essentials 1 Summary Test with explanation

preview_player
Показать описание
Python Essentials is a series of two courses from Python Institute that helps to prepare for the Python Institute certifications.
Python Essentials 1 prepares for PCEP exam – Certified Entry-Level Python Programmer
Python Essentials 2 prepares for PCAP exam – Certified Associate in Python Programming
Both of these courses are also available via Cisco Networking Academy (NetAcad).
This video series is an overview of the course quizzes and tests with explanation of the correct answers and selected technical concepts.
Рекомендации по теме
Комментарии
Автор

Your videos have been a godsend! Passed Python because of these!

kyyle
Автор

@0:51 while i < i + 2 | remains true because whatever value i is incremented to, that value will always be less than i plus 2, so you get 0 < 0 + 2 | 1 < 1 + 2 | 2 < 2 + 2 ... so its always true as you noted but the trick there is to do the math for the loops first then reason about the T/F values of the while condition at each iteration of the loop

@1:29 # Using "print" as a variable (not recommended)
print = "Hello, World!"
print(print) # This will raise an error because "print" is now a string, not a function

# Better practice: Choose a meaningful variable name
message = "Hello, World!"
print(message) # This works as expected

teknerds
Автор

I passed! These videos have helped so much Thank you! All the best from Ireland

reilandcash
Автор

very helpful and explained very well --- Thank you!

ai
Автор

Sorry but I am confused by questio-22, the AI chatGPT4 says Question-22 is wrong 😂😂😂
I asked this question in chatGPT4 and it said that the proper answer is [0, 1, 9, 16] and NOT [0, 1, 4, 9].
As the AI says there is no code instructing the func() to delete the last position, the func() only says to delete list[2], which results in [0, 1, 9, 16]
This is coming straight from chatGPT4 when I place the code snippet in chatGPT4, which is the latest model.

The reason why I checked this in chatGPT4, was because I was confused as to why you were deleting the number 16 when no instructions or func() said to do so. 🤔
So I wanted to verify with chatGPT4. 🤷‍♀

RobFos
Автор

please how do i get the discount voucher, i just finished the python essentials 1

emmanuelchukwuemeka
Автор

Quick question is this the final test for the certification or is it just for practice?

Technomite-hvds
Автор

can you explain how you got syntax error for number 30? Shouldn't it be zerodivionerror??

shinyjay.
join shbcf.ru