python获取电脑当前时间
时间: 2023-09-15 08:23:18 浏览: 109
你可以使用Python标准库中的datetime模块来获取电脑当前时间。以下是一个获取当前时间并将其打印出来的简单示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间为:", now)
```
输出结果类似于:
```
当前时间为: 2021-05-31 14:30:00.123456
```
其中,`now()`方法返回一个表示当前本地时间的datetime对象。你可以从这个对象中提取出年、月、日、时、分、秒等信息。例如,要获取当前小时数,可以使用以下代码:
```python
hour = now.hour
print("当前小时数为:", hour)
```
输出结果类似于:
```
当前小时数为: 14
```
相关问题
python获取电脑当前时间的所有方式
在Python中,可以使用datetime模块来获取当前时间。下面是获取电脑当前时间的几种方式:
1. 使用datetime模块获取当前时间
```python
import datetime
now = datetime.datetime.now()
print("当前时间:", now)
```
2. 使用time模块获取当前时间
```python
import time
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
print("当前时间:", now)
```
3. 使用calendar模块获取当前时间
```python
import calendar
now = calendar.timegm(time.gmtime())
print("当前时间:", now)
```
4. 使用arrow模块获取当前时间
```python
import arrow
now = arrow.now()
print("当前时间:", now)
```
以上是获取电脑当前时间的几种方式,您可以根据实际需要选择使用。
Python 获取电脑系统目录
可以使用 Python 的 os 模块来获取电脑系统目录。以下是获取 Windows 和 Linux 系统目录的示例代码:
```python
import os
# 获取 Windows 系统目录
win_dir = os.environ.get('SYSTEMROOT')
print(win_dir)
# 获取 Linux 系统目录
linux_dir = '/'
print(linux_dir)
```
输出:
```
C:\WINDOWS
/
```
阅读全文