📜  如何在 Python 代码示例中为变量赋值

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

代码示例1
#In Python, to assign any value to a variable, type:
#var (name of variable) '=' (value)
#For example:
var num = 6
print (num)
#output will be: 6.
#Don't forget to upvote this answer if it was helpful!