Answers for "int string vs string"

1

differece between int and string

Integer (int) and String (str) are two different values.
If you want to create an Integer in python and save it in a variable you will need to write:
VarNameHere = 3
But if you wanna create a string and save it in a variable you will have to write:
VarNameHere = "Text"
Posted by: Guest on August-19-2021

Browse Popular Code Answers by Language