تمارين الممارسة
Practice what you’ve learned so far.
سنغطي ما يلي...
سنغطي ما يلي...
لنرَ ما تعلمته حتى الآن من خلال اختبار. لنبدأ!
اختبر نفسك!
Variables and built-in functions
1
Consider the following Python code snippet:
num1 = 5
num2 = 8
num2 = num1
print("The value of num2 is:", num2)
What is the final value of variable num2
?
A)
10
B)
8
C)
5
D)
None of the above
Question 1 of 30 attempted