3 Respostas
+ 6
Declaring means to declare the variable
Like
a = "5" // it means you declare the variable 'a' and put the value 5 in variable a
And display means just get the ouput like you declare the variable, now how can you display the output in your screen so, if we want to see the output/display the output in your screen then we use print function
print(a)
Now, you see in comment section like this:
# declare the variable a and store the value '5' in a variable
a = 5
# display the a variable
print(a)
Hope you understand.
+ 3
Hajeongwoo
Welcome.
Happy to help 😊
+ 1
Wow thank you so much :)