简单的代码,比如:
print(666) print(888)
通过-c的一条命令就可以实现,如图
那多个复合语句,例:
if 1==1: print(1) def test_aaa(): print(2) test_aaa()
以上例子如何通过-c,用一条命令如何实现?