摘要:
import turtle turtle.speed(10) colors = ['red','purple','blue','green','yellow'] for i in range(200): turtle.pencolor(colors[i%5]) turtle.forward(i) t 阅读全文
摘要:
fw = open('plainText.txt',mode='w',encoding='utf-8') for c in plainText: print(chr(ord(c)+3),end='') fw.write(chr(ord(c)+3)) name1 = 'Peter' name2 = 'Kate' people = ['Peter','Kate','Lisa',... 阅读全文
摘要:
while True: a = input('1:摄氏转华氏\n2: 华氏转摄氏\n3: 退出\n') if a == '1': celsius = float(input('输入摄氏温度:')) fahrenheit = (celsius*9/5)+32 print('{:.2f}摄氏温度转为华氏 阅读全文
摘要:
Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD64)] on win32 Type "copyright", "credits" or "license()" for more information. >>> name1=input('请输入一个名字:') 请输入一个名字:贱贱 >>... 阅读全文