a + b = 579
1
代码中就使用了三个变量:a、b和c,并在print中使用。第1行a = 123就创建了一个变量,变量名为a,2、3行同样也创建了变量,不同的是,变量a和b整数型的,而变量c的类型是字符串类型,这不同于C语言,在C语言中,使用变量之前是需要“声明”类型的,而在python中,在通过等号=赋值后,就创建了一个变量,变量的类型是python自动识别的。
Here is a list of the Python keywords. Enter any keyword to get more help.
False class from or
None continue global pass
True def if raise
and del import return
as elif in try
assert else is while
async except lambda with
await finally nonlocal yield
break for not