📜  int 和 string 之间的差异 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:50.384000             🧑  作者: Mango

代码示例1
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"