博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python语言程序设计基础(1)—— 程序设计基本方法
阅读量:4917 次
发布时间:2019-06-11

本文共 1081 字,大约阅读时间需要 3 分钟。

Everybody in this country should learn how to program a computer,because it teaches you how to think.

                     ——史蒂夫~乔布斯

 

圆的面积

import mathradius = 25area = math.pi*radius*radiusprint(area)print("{:.2f}".format(area))

 

输入

name = input("输入人名:")print("{}".format(name))print("{}".format(name[0]))print("{}".format(name[1:]))

 

斐波那契

a , b = 1,1while a < 1000 :    print(a,end=',')    a, b = b,a+bprint("")

 

同心圆

import turtleturtle.pensize(2)turtle.circle(10)turtle.circle(20)

 

日期与时间

from datetime import datetimenow = datetime.now()print(now)print(now.strftime("%x"))print(now.strftime("%X"))

 

习题部分

字符串拼接
str1 = input()str2 = input()print("{} {}".format(str1,str2))

 

sum(n)
n=input()sum=0for i in range(int(n)+1):    sum+=iprint(sum)

 

9*9
for i in range(1,10):    for j in range(1,i+1):        print("{}*{}={:2}".format(j,i,j*i),end=' ')    print("")

 

1! + 2! + 3! + ... + n!
n = input()sum = 0tmp = 1for i in range(1,int(n)+1):    sum+=tmp    tmp*=(i+1)print(sum)

 

猴子吃桃
ans = 1for i in range(5):    ans = (ans + 1)*2print(ans)

 

 
 

转载于:https://www.cnblogs.com/TreeDream/p/9780459.html

你可能感兴趣的文章
join() 和 sleep() 区别
查看>>
MySQL 'localhost' (10061)解决方法
查看>>
信息安全-1:python之playfair密码算法详解[原创]
查看>>
Linq
查看>>
OC中新增的数据类型
查看>>
在自己的iOS程序中引入自定义字体
查看>>
页面的按钮3d效果
查看>>
CSS-微信开放UI样式
查看>>
TensorFlow 学习(2)——正式起步
查看>>
TableViewer使用
查看>>
GDB调试原理——ptrace系统调用
查看>>
包含单引号的sql
查看>>
net2.0对于递归变量的处理方式不同引发的递归问题
查看>>
asp.net 数据库连接 使用事务处理(一)
查看>>
Ionic学习
查看>>
ContentProvider的使用
查看>>
使用聚合接口获取汉字数据字典
查看>>
STM32之DMA实例
查看>>
Spring MVC入门知识总结
查看>>
java RandomAccessFile类(随机访问文件)
查看>>