如何用Python编写这个(Java)?
class Test
{
private String test1 = "test";
private static void main(String args[])
{
System.out.println("test" + test1);
}
}
答案 0 :(得分:5)
由于Python支持类之外的代码,因此等价物如下:
test1 = "test"
print("test" + test1)
更新:获取参数:
import sys
print sys.argv
你真的应该从the tutorial开始!
答案 1 :(得分:4)
test1 = "test"
print "test" + test1
但是如果您使用的是Python 3,则必须编写print("test" + test1)
。