Answers for "declare int in python"

2

Use variables in python

x = 'Welcome'
print(x)
Posted by: Guest on July-08-2020
1

python cvariables

x = 7 #sets int as x

y = "John"# sets the string as y

print(x)#prints x 

print(y)# prints y
Posted by: Guest on June-12-2020

Python Answers by Framework

Browse Popular Code Answers by Language