摘要:
if语句: 第一种 count = 5 if count == 5: print( count ) 第二种 count = 5 if count == 5: print( count ) else: print (count) 第三种 if count == 5: print( count ) el 阅读全文
摘要:
物理行:就是程序员所写代码的所在行。 逻辑行:是指源代码经过预编译后,代码所在的那一行。 Python假定每个物理行都对应着一个逻辑行。例如:print( "Hello World" ) 就是一个物理行,Python希望每行只有一个语句,因为这样看起来更加易读。 如果你想要在一个物理行中使用多于一个 阅读全文