Python Multiple Assignment and Trace Tables

preview_player
Показать описание
Has another look at the multiple assignment statement and introduces the trace table - which helps with the understanding and debugging of a program.
Рекомендации по теме
Комментарии
Автор

Trace table is such a simple yet powerful tool we often overlook when debugging our program. Thank you for sharing

stanc
Автор

As always, exemplary. Please keep up the great work!

Rohanivey
Автор

John Philip Jones Thank you so much I am about to sit my computer science exam and this was really useful to review trace tables.

Once again thanks form the great job and keep up the great work.

wanderingcat
Автор

Thank you for your videos. Keep up the great work!

suaadmohammed
Автор

nice video, waiting for the upcoming ones :)

ahmedr.
Автор

Hello, thank you for your video. Can you explain a way to figure out a loop.Please

no
Автор

Sir iam studying engineering and still leaning.
I want to append the data from the user defined function into a list and when call the function again it has to append the data into the same list.
Please help me-
Ex-
A=[ ]
def foo(A):
c=int(input('enter a value'))
d=int(input('enter another value'))

if c>d:
return c
A. append(c)

Now when I call this function again.. The list has to be appended by the data that is returned by the function.
Please help me with this.
Iam doing a project

ManojKumar-hnvu