1、建議初學者盡早習慣Python的縮進規則
對于Python而言代碼縮進是一種文法,Python沒有像其他語言一樣采用{}或者begin...end分隔代碼塊,而是采用代碼縮進和冒号來區分代碼之間的層次。
縮進的空白數量是可變的,但是所有代碼塊語句必須包含相同的縮進空白數量,這個必須嚴格執行。
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
^————————^———————————^
ProjectName:python-2019
Author: 韓豔威
Description:
CreateTime:in 2019-10-25 10:40
Modified By:
FileName: idea_if
Description:
Question:
Version:
^————————^———————————^
'''
name = 'laohan'
if name == 'laohan':
print('真的是老韓')
else:
print('哦,不是老韓')
2、pep8 規範要求4個空格為語句塊縮進。
3、一般用在指派語句(等于号 前後空一個空格),函數參數(逗号後,空一個空格)。
還有其它的,請參考pep8 規範PEP 0008 -- Style Guide for Python Code初學者(4個空格為語句塊縮進)經常犯的錯誤是tab鍵和空間鍵混用,造成的縮進不一緻。凡是報錯資訊看到:IndentationError: unexpected indent ,就是表示縮進不一緻。
name = 'laohan'
if name == 'laohan':
print('真的是老韓')
else:
print('哦,不是老韓')
/usr/local/bin/python3.7 /Users/hanyanwei/python-2019/blog/idea_if.py
File "/Users/hanyanwei/python-2019/blog/idea_if.py", line 19
else:
^
IndentationError: unindent does not match any outer indentation level
Process finished with exit code 1
num = 0
while num <= 10:
print(num)
num += num + 1