Python3 Pass 语句 Python3 Continue 语句 Python3 数字Number Abs 方法 Python3 Pass 语句 #!/usr/bin/python3 for letter in 'Python': if letter == 'h': pass print ('This is pass block') print ('Current Letter :', letter) print ("Good bye!") Python3 Continue 语句 Python3 数字Number Abs 方法