很抱歉,如果这对您来说非常不合适,但我刚开始学习C++和Java之后学习Python,我想知道在世界上我如何能够声明变量id = 0,name = 'John'无论是否有任何int或string前面的变量!我想出也许是因为没有'一个数字,但是Python会如何解决这个问题def increase(first, second)而不是像int increase(int first, int second)C++ 这样的东西?!
id = 0
name = 'John'
int
string
'
def increase(first, second)
int increase(int first, int second)
python
python ×1