python3 练手实例6 做一个简单日历】的更多相关文章

import calendar year = int(input('请输入要查询的年份:')) month = int (input('请输入要查询的月数:')) print (calendar.month(year,month))…
import time,sys,os while(1): t = time.strftime('%Y-%m-%d\n%H:%M:%S',time.localtime(time.time())) print(t) sys.stdout.flush() time.sleep(1) os.system('cls')#windows命令提示符下清屏,在linux终端下清屏就用:os.system("clear")…
def wd(): w=input('请输入一个摄氏温度或者一个华氏温度,如,34c/C or 34f/F:') if w[-1] in ['c','C']: w=float(w[:-1]) hs=1.8*w+32 print('华氏温度:{:.2f}F'.format(hs)) elif w[-1] in ['f',' F']: w=float(w[:-1]) ss=(w-32)/1.8 print ('摄氏温度:{:.2f}C'.format(ss)) wd()…
#coding:utf-8 import os import tkinter as tk from tkinter import filedialog root = tk.Tk() root.withdraw() file_path = filedialog.askdirectory() file_path =file_path+'/' f=os.listdir(file_path) n=0 name=input('请输入你要批量命名的名字:')#我批量命名的是 美女 -__- for i in…
'''a,b=0,1 x=int(input('请指定需要多少项:')) while x>0: print(b) a,b=b,a+b x-=1''' #递归 def fibo(n): if n<=1: return 1 else: return fibo(n-1) + fibo(n-2) i=int(input('请指定需要多少项:')) for j in range(0,i): print(fibo(j))…
for i in range(1,10): for j in range(1,i+1): print('{}*{}={}\t'.format(i,j,i*j),end='') print()…
import math def y(): a,b,c=map(float,input('请输入一元二次方程式ax^2+bx+c=0,abc的值,用空格隔开:').split()) d=math.pow(b,2)+4*a*c if a!=0 and d>=0: x1=(math.sqrt(d)-b)/(2*a) x2=-(math.sqrt(d)+b)/(2*a) print('方程的值是:{:.2f},{:.2f}'.format(x1,x2)) elif a==0: print('a不能为0,…
def j(): a,b,c=map(float,input('请输入三角形三条边的长度,用空格隔开:').split()) if a>0 and b>0 and c>0 and a+b>c and a+c>b and b+c>a: l=a+b+c p=l/2 s=p*(p-a)*(p-b)*(p-c)#海伦公式 print('三角形的周长:{:.2f}\n三角形的面积:{:.2f}'.format(l,s)) else: print('三角形不成立,请重新输入') j…
1. 前言 说到React,我从一年之前就开始试着了解并且看了相关的入门教程,而且还买过一本<React:引领未来的用户界面开发框架 >拜读.React的轻量组件化的思想及其virtual-dom的这种技术创新,也算是早就有了初步了解.一来没有学的太深入,二来后来在工作中和业余项目中都没有用到,因此慢慢的就更加生疏了. 近期,因为我想把自己的开源项目wangEditor能放在React.angular和vuejs中使用.先从react开始,顺手自己也重试一下React的基础知识,顺便再做一个小…
猴子原创,欢迎转载.转载请注明: 转载自Cocos2Der-CSDN,谢谢! 原文地址: http://blog.csdn.net/cocos2der/article/details/51006463 本文主要讲述了如何使用Multiplayer Networking开发多人游戏,文中实例.代码来源于Unity官方教程. 原文:INTRODUCTION TO A SIMPLE MULTIPLAYER EXAMPLE Networking Overview The High Level API N…