Python的报错让我学到新知识

简介: Python的报错让我学到新知识

Python内置模块Datetime 日期(date)构造报错让我学到新的知识

Python内置时间处理模块主要包括:
§ Datetime
§ Time
§ Calendar

Datetime模块应用比较多,它属于Python内置模块,功能相对较全。下面实例操作:

import datetime
# 构造日期date实例
d1 = datetime.date(2022, 03, 22) # 根据年月日的格式输入3个整型数字参数
print(d1)

如果按上面的格式输入参数,输出结果如下:

SyntaxError: leading zeros in decimal integer literals are not permitted; use an 0o prefix for octal integers

File "/Users/liuxiaowei/Python知识手册/tutorials/Python内置时间模块/Datetime/构建时间对象实例/日期(date)实例的构造.py", line 9
    d1 = datetime.date(2022, 03, 22)
                              ^
SyntaxError: leading zeros in decimal integer literals are not permitted; use an 0o prefix for octal integers

根据错误提示,“语法错误:不允许在十进制整型数字打头数字为0,使用一个0o八进制整型前缀可以“,那么按照提示,修改如下:

import datetime
# 构造日期date实例
d1 = datetime.date(2022, 0o03, 22)
print(d1)

问题解决,如下图:

image.png

这就是Python的魅力,或许这样也挺Pythonic。

相关文章
|
2月前
|
Linux Python
【Azure Function】Python Function部署到Azure后报错No module named '_cffi_backend'
ERROR: Error: No module named '_cffi_backend', Cannot find module. Please check the requirements.txt file for the missing module.
|
3月前
|
机器学习/深度学习 Shell 开发工具
Python使用管道执行git命令报错|4-7
Python使用管道执行git命令报错|4-7
|
3月前
|
Python
python常见报错
python常见报错
|
3月前
|
Linux 编译器 开发工具
快速在linux上配置python3.x的环境以及可能报错的解决方案(python其它版本可同样方式安装)
这篇文章介绍了在Linux系统上配置Python 3.x环境的步骤,包括安装系统依赖、下载和解压Python源码、编译安装、修改环境变量,以及常见安装错误的解决方案。
194 1
|
2月前
|
数据采集 网络安全 Python
Python使用urllib或者urllib2模块打开网页遇到ssl报错
Python使用urllib或者urllib2模块打开网页遇到ssl报错
|
3月前
|
缓存 Python
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-npf9报错
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-npf9报错
|
3月前
|
JSON 安全 数据格式
7-6|python报错TypeError: can't pickle _thread.RLock objects
7-6|python报错TypeError: can't pickle _thread.RLock objects
|
5月前
|
Serverless 语音技术 开发工具
函数计算操作报错合集之怎么何集成nls tts python sdk
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
|
5月前
|
SQL 分布式计算 DataWorks
DataWorks操作报错合集之重新上传后只有SQL无法运行,而Python可以正常运行,是什么导致的
DataWorks是阿里云提供的一站式大数据开发与治理平台,支持数据集成、数据开发、数据服务、数据质量管理、数据安全管理等全流程数据处理。在使用DataWorks过程中,可能会遇到各种操作报错。以下是一些常见的报错情况及其可能的原因和解决方法。
|
5月前
|
开发者 Python
【Python】已解决:(Python3中pip无法安装urllib报错问题) ERROR: Could not find a version that satisfies the requireme
【Python】已解决:(Python3中pip无法安装urllib报错问题) ERROR: Could not find a version that satisfies the requireme
327 0
【Python】已解决:(Python3中pip无法安装urllib报错问题) ERROR: Could not find a version that satisfies the requireme