python有趣的代码
时间: 2023-06-12 21:07:44 浏览: 94
以下是一些有趣的 Python 代码:
1. 将字符串反转
```python
string = "Hello, World!"
print(string[::-1])
```
2. 生成斐波那契数列
```python
def fibonacci(n):
if n <= 1:
return n
else:
return (fibonacci(n-1) + fibonacci(n-2))
nterms = 10
if nterms <= 0:
print("请输入一个正整数!")
else:
print("斐波那契数列:")
for i in range(nterms):
print(fibonacci(i))
```
3. 在终端上打印彩虹
```python
import colorama
from colorama import Fore, Back, Style
colorama.init()
print(Fore.RED + 'R')
print(Fore.YELLOW + 'A')
print(Fore.GREEN + 'I')
print(Fore.BLUE + 'N')
print(Fore.MAGENTA + 'B')
print(Fore.CYAN + 'O')
print(Fore.RED + 'W')
```
4. 打印出 ASCII 艺术
```python
print(" ____ _ ____ _____ _____ ____ _____ ")
print(" / ___| / \ / ___|| ____| | ____| | _ \| ____|")
print("| | / _ \ \___ \| _| | _| | |_) | _| ")
print("| |___ / ___ \ ___) | |___ | |___ | _ <| |___ ")
print(" \____| /_/ \_\ |____/|_____| |_____| |_| \_\_____|")
```
5. 让计算机说出你想让它说的话
```python
import os
text = input("请输入你想让计算机说的话:")
os.system(f'say {text}')
```
这些代码只是一些有趣的示例,可以帮助你了解 Python 的一些基本概念和语法。当然,你可以探索更多的 Python 代码,找到更多有趣的东西!
阅读全文