Mayungo Mayu Mayu
This time it ’s the third episode
I will print out the numbers with print.
The same content is also published in the video, so please have a look if you like.
If you set "" "" and "''" in print, the contents will be output.
print("1")
1
But when it comes to numbers, sometimes it's better not to be a mast.
print(1)
1
Now create the variables first and second.
Nothing is attached to 114 and 514 here.
first = 114
second = 514
print(first + second)
628
The total of the two is 628.
Next, create variables iti and ni and enter 114 and 514 respectively.
Here, add "".
iti = "114"
ni = "514"
print(iti + ni)
114514
If you add and print, you will get 114514.
The difference is whether you see the numbers as numbers or letters.
I will touch on it a little more next time. Thank you for subscribing to the channel.