print("hi") #says hi. x = 10 #Every time I write x, code works as if I had written 10 print(x) #says 10
I will be using these two quite a lot so I will explain each one separatedly. Still, knowing what they do is key so you better get used to them.
print("hi") #says hi. x = 10 #Every time I write x, code works as if I had written 10 print(x) #says 10