初学Python常见异常错误,总有一处你会遇到!

简介: 初学Python常见错误忘记写冒号误用=错误 缩紧变量没有定义中英文输入法导致的错误不同数据类型的拼接索引位置问题使用字典中不存在的键忘了括号漏传参数缺失依赖库使用了python中对关键词编码问题1.

初学Python常见错误

  1. 忘记写冒号
  2. 误用=
  3. 错误 缩紧
  4. 变量没有定义
  5. 中英文输入法导致的错误
  6. 不同数据类型的拼接
  7. 索引位置问题
  8. 使用字典中不存在的键
  9. 忘了括号
  10. 漏传参数
  11. 缺失依赖库
  12. 使用了python中对关键词
  13. 编码问题

1. 忘记写冒号

在 if、elif、else、for、while、def语句后面忘记添加 :

age = 42

if age == 42

    print('Hello!')
  File "<ipython-input-19-4303141d6f97>", line 2

    if age == 42

                ^

SyntaxError: invalid syntax

2. 误用 =

=` 是赋值操作,而判断两个值是否相等是 `==
gender = '男'

if gender = '男':

    print('Man')
  File "<ipython-input-20-191d01f95984>", line 2

    if gender = '男':

              ^

SyntaxError: invalid syntax

3. 错误的缩进

Python用缩进区分代码块,常见的错误用法:

print('Hello!')

 print('Howdy!')
  File "<ipython-input-9-784bdb6e1df5>", line 2

    print('Howdy!')

    ^

IndentationError: unexpected indent
num = 25

if num == 25:

print('Hello!')
  File "<ipython-input-21-8e4debcdf119>", line 3

    print('Hello!')

        ^

IndentationError: expected an indented block

4. 变量没有定义


if city in ['New York', 'Bei Jing', 'Tokyo']:

    print('This is a mega city')
---------------------------------------------------------------------------


NameError                                 Traceback (most recent call last)


<ipython-input-22-a81fd2e7a0fd> in <module>

----> 1 if city in ['New York', 'Bei Jing', 'Tokyo']:

      2     print('This is a mega city')
NameError: name 'city' is not defined

5. 中英文输入法导致的错误

  • 英文冒号
  • 英文括号
  • 英文逗号
  • 英文单双引号
if 5>3:

    print('5比3大')
  File "<ipython-input-46-47f8b985b82d>", line 1

    if 5>3:

          ^

SyntaxError: invalid character in identifier
if 5>3:

    print('5比3大')
  File "<ipython-input-47-4b1df4694a8d>", line 2

    print('5比3大')

                ^

SyntaxError: invalid character in identifier
spam = [1, 2,3]
  File "<ipython-input-45-47a5de07f212>", line 1

    spam = [1, 2,3]

                 ^

SyntaxError: invalid character in identifier
if 5>3:

    print('5比3大‘)
  File "<ipython-input-48-ae599f12badb>", line 2

    print('5比3大‘)

                 ^

SyntaxError: EOL while scanning string literal

6. 不同数据类型的拼接

字符串/列表/元组 支持拼接

字典/集合不支持拼接

#小编创建了一个Python学习交流QQ群:857662006 
'I have ' + 12 + ' eggs.'

#'I have {} eggs.'.format(12)
---------------------------------------------------------------------------


TypeError                                 Traceback (most recent call last)


<ipython-input-29-20c7c89a2ec6> in <module>

----> 1 'I have ' + 12 + ' eggs.'
TypeError: can only concatenate str (not "int") to str
['a', 'b', 'c']+'def'
---------------------------------------------------------------------------


TypeError                                 Traceback (most recent call last)


<ipython-input-31-0e8919333d6b> in <module>

----> 1 ['a', 'b', 'c']+'def'
TypeError: can only concatenate list (not "str") to list
('a', 'b', 'c')+['a', 'b', 'c']
---------------------------------------------------------------------------


TypeError                                 Traceback (most recent call last)


<ipython-input-33-90742621216d> in <module>

----> 1 ('a', 'b', 'c')+['a', 'b', 'c']
TypeError: can only concatenate tuple (not "list") to tuple
set(['a', 'b', 'c'])+set(['d', 'e'])
---------------------------------------------------------------------------


TypeError                                 Traceback (most recent call last)


<ipython-input-35-ddf5fb1e6c8c> in <module>

----> 1 set(['a', 'b', 'c'])+set(['d', 'e'])
TypeError: unsupported operand type(s) for +: 'set' and 'set'
grades1 = {'Mary':99, 'Henry':77}

grades2 = {'David':88, 'Unique':89}


grades1+grades2
---------------------------------------------------------------------------


TypeError                                 Traceback (most recent call last)


<ipython-input-36-1b1456844331> in <module>

      2 grades2 = {'David':88, 'Unique':89}

      3 

----> 4 grades1+grades2
TypeError: unsupported operand type(s) for +: 'dict' and 'dict'

7. 索引位置问题

spam = ['cat', 'dog', 'mouse']

print(spam[5])
---------------------------------------------------------------------------


IndexError                                Traceback (most recent call last)


<ipython-input-38-e0a79346266d> in <module>

      1 spam = ['cat', 'dog', 'mouse']

----> 2 print(spam[5])
IndexError: list index out of range

8. 使用字典中不存在的键

在字典对象中访问 key 可以使用 []

但是如果该 key 不存在,就会导致:KeyError: 'zebra'

spam = {'cat': 'Zophie',

        'dog': 'Basil',

        'mouse': 'Whiskers'}


print(spam['zebra'])
---------------------------------------------------------------------------


KeyError                                  Traceback (most recent call last)


<ipython-input-39-92c9b44ff034> in <module>

      3         'mouse': 'Whiskers'}

      4 

----> 5 print(spam['zebra'])
KeyError: 'zebra'

为了避免这种情况,可以使用 get 方法

spam = {'cat': 'Zophie',

        'dog': 'Basil',

        'mouse': 'Whiskers'}


print(spam.get('zebra'))
None

key 不存在时,get 默认返回 None

9. 忘了括号

当函数中传入的是函数或者方法时,容易漏写括号

spam = {'cat': 'Zophie',

        'dog': 'Basil',

        'mouse': 'Whiskers'}


print(spam.get('zebra')
  File "<ipython-input-43-100a51a7b630>", line 5

    print(spam.get('zebra')

                           ^

SyntaxError: unexpected EOF while parsing

10. 漏传参数

def diyadd(x, y, z):

    return x+y+z


diyadd(1, 2)
---------------------------------------------------------------------------


TypeError                                 Traceback (most recent call last)


<ipython-input-44-7184f3f906ca> in <module>

      2     return x+y+z

      3 

----> 4 diyadd(1, 2)
TypeError: diyadd() missing 1 required positional argument: 'z'

11. 缺失依赖库

电脑中没有相关的库

12. 使用了python中的关键词

如try、except、def、class、object、None、True、False等

try = 5

print(try)
  File "<ipython-input-1-508e87fe2ff3>", line 1

    try = 5

        ^

SyntaxError: invalid syntax
def = 6

print(6)
  File "<ipython-input-2-d04205303265>", line 1

    def = 6

        ^

SyntaxError: invalid syntax

13. 文件编码问题

import pandas as pd


df = pd.read_csv('data/twitter情感分析数据集.csv')

df.head()

尝试encoding编码参数传入utf-8、gbk

df = pd.read_csv('data/twitter情感分析数据集.csv', encoding='utf-8')

df.head()

都报错说明编码不是utf-8和gbk,而是不常见都编码,这里我们需要传入正确都encoding,才能让程序运行。

python有个chardet库,专门用来侦测编码。

import chardet


binary_data = open('data/twitter情感分析数据集.csv', 'rb').read()

chardet.detect(binary_data)
{'encoding': 'Windows-1252', 'confidence': 0.7291192008535122, 'language': ''
相关文章
|
1月前
|
测试技术 开发者 Python
对于Python中的异常要如何处理,raise关键字你真的了解吗?一篇文章带你从头了解
`raise`关键字在Python中用于显式引发异常,允许开发者在检测到错误条件时中断程序流程,并通过异常处理机制(如try-except块)接管控制。`raise`后可跟异常类型、异常对象及错误信息,适用于验证输入、处理错误、自定义异常、重新引发异常及测试等场景。例如,`raise ValueError(&quot;Invalid input&quot;)`用于验证输入数据,若不符合预期则引发异常,确保数据准确并提供清晰错误信息。此外,通过自定义异常类,可以针对特定错误情况提供更具体的信息,增强代码的健壮性和可维护性。
|
1月前
|
Python
在Python中,`try...except`语句用于捕获和处理程序运行时的异常
在Python中,`try...except`语句用于捕获和处理程序运行时的异常
50 5
|
1月前
|
Python
在Python中,自定义函数可以抛出自定义异常
在Python中,自定义函数可以抛出自定义异常
48 5
|
1月前
|
存储 开发者 Python
自定义Python的异常
自定义Python的异常
20 5
|
2月前
|
存储 索引 Python
|
5月前
|
Unix API Python
【Python】已完美解决:(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock‘
【Python】已完美解决:(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock‘
116 0
|
2月前
|
Python
Python生成器、装饰器、异常
【10月更文挑战第15天】
|
2月前
|
设计模式 安全 JavaScript
Python学习八:面向对象编程(下):异常、私有等
这篇文章详细介绍了Python面向对象编程中的私有属性、私有方法、异常处理及动态添加属性和方法等关键概念。
28 1
|
3月前
|
人工智能 数据可视化 搜索推荐
Python异常模块与包
Python异常模块与包
|
2月前
|
开发者 索引 Python
Python常见的异常总结
Python 中的异常是一个非常广泛的主题,因为它包含许多内置的异常类型,这些类型可以处理各种运行时错误。
42 0