随笔分类 - python
摘要:import tkinter as tk from PIL import ImageTk from aip import AipSpeech import os window = tk.Tk() window.geometry('1050x591') window.resizable(0,0) wi
阅读全文
摘要:《翻译官》 通用翻译API—百度翻译开放平台 AppID: 20210915000944730 Key: fp19vk7_V5KW2GSndfd5 import pygame from sys import exit from subprocess import Popen,PIPE import
阅读全文
摘要:一.列表的定义 列表名 = [] a = []#创建了一个空列表 b = [1,2,3,4]#创建了一个列表,里面有4个元素 #输入列表: c = list(map(int,input().split())) 二.列表的索引 列表的索引是从0开始 如列表a = [1,2,3,4] 中的元素1的下标就
阅读全文