我想写一个比较2个字符串的文件,如果它们相同,则执行一系列操作。 我已经知道如何为一次操作做到这一点:
if string1 == string2 do_one_thing
但是做更多的事情呢? 我想它是这样的:
if string1 == string2 do(
first_operation
second operation
)
答案 0 :(得分:1)
你必须缩进你的操作并使用冒号。
if string1 == string2:
first_operation
second_operation
after_if_operation
正如Martijn已经指出的那样:Python Tutorial。