没有合适的资源?快使用搜索试试~ 我知道了~
Python数据工程——No.2基本语法元素的格式输出(一次性彻底入门python)
0 下载量 25 浏览量
2021-01-20
02:11:07
上传
评论
收藏 75KB PDF 举报
温馨提示
一份Python代码彻底入门Python,Simple and Rough! 注释详细~ 参考代码下载链接 from operator import itemgetter from datetime import date, time, datetime, timedelta from math import exp, log, sqrt import re #Print a simple string print(Output #1 : I'm exited to learn Python.) #两个数值相加 x = 4 y = 5 z = x + y print(Output #2
资源推荐
资源详情
资源评论
Python数据工程数据工程——No.2基本语法元素的格式输出(一次性基本语法元素的格式输出(一次性
彻底入门彻底入门python))
一份一份Python代码彻底入门代码彻底入门Python,,Simple and Rough!!
注释详细~
参考代码下载链接
from operator import itemgetter
from datetime import date, time, datetime, timedelta
from math import exp, log, sqrt
import re
#Print a simple string
print("Output #1 : I'm exited to learn Python.")
#两个数值相加
x = 4
y = 5
z = x + y
print("Output #2 : Four plus five equals {0:d}.".format(z))
'''
输出格式解释
{} : 一个占位符,表示这里将要传入print语句中的一个具体的值
0 : 指向format()方法中的第一个参数
: : 用来分隔传入的值和它的格式
'''
#两个列表相加
a = [1, 2, 3, 4] b = ["first", "second", "third", "fourth"] c = a + b
print("Output #3 : {0}, {1}, {2}".format(a, b, c))
#整数
x = 9
print("Output #4 : {0}".format(x))
print("Output #5 : {0}".format(3 ** 4))
print("Output #6 : {0}".format(int(8.3) / int(2.7)))
#浮点数
print("Output #7 : {0:.3f}".format(8.3 / 2.7)) #保留3位小数
y = 2.5 * 4.8
print("Output #8 : {0:.1f}".format(y)) #保留一位小数
r = 8 / float(3)
print("Output #9 : {0:.2f}".format(r)) #保留2位小数
print("Output #10 : {0:.4f}".format(8.0 / 3)) #保留4位小数
#调用math库中的函数
print("Output #11 : {0:.4f}".format(exp(3))) #e^3
print("Output #12 : {0:.2f}".format(log(4))) #ln4
print("Output #13 : {0:.1f}".format(sqrt(81))) #平方根
#字符串
print("Output #14 : {0:s}".format('I\'m enjoying learning Python.'))
print("Output #15 : {0:s}".format("This is a long string. Without the backslash it \
would run off of the page on the right in the text \
editor and be very difficult to read and edit. \
By using the backslash you can split the long string \
into smaller strings on separate lines so that the whole string \
is easy to view in the text editor."))
print("Output #16 : {0:s}".format('''You can use triple single quotes for
multi-line comment strings.'''))
print("Output #17 : {0:s}".format("""You can also use triple double quotes for
multi-line comment strings."""))
string1 = "This is a " #定义字符串string1
string2 = "short string." #定义字符串string2
sentence = string1 + string2 #字符串连接
print("Output #18 : {0:s}".format(sentence))
print("Output #19 : {0:s} {1:s}{2:s}".format("she is", "very "*7, "beautiful."))
m = len(sentence) #字符串长度
print("Output #20 : {0:d}".format(m))
#split函数
string1 = "My deliverable is due in May"
string1_list1 = string1.split() #split默认用空格对字符串拆分
资源评论
weixin_38693419
- 粉丝: 6
- 资源: 930
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 用Python在控制台绘制爱心形状的技术实例
- 用Python编程实现控制台爱心形状绘制技术教程
- 这是 YOLOv4 的 pytorch 存储库,可以使用自定义数据集进行训练 .zip
- 这是 HIC-Yolov5 的存储库.zip
- 这只是另一个 YOLO V2 实现 在 jupyter 笔记本中训练您自己的数据集!.zip
- PicGo 是一个用于快速上传图片并获取图片 URL 链接的工具
- uniapp vue3 自定义下拉刷新组件pullRefresh,带释放刷新状态、更新时间、加载动画
- WINDOWS 2003邮箱服务器搭建
- 距离-IoU 损失更快、更好的边界框回归学习 (AAAI 2020).zip
- 该项目是运行在RK3588平台上的Yolo多线程推理demo,已适配读取视频文件和摄像头信号,demo采用Yolov8n模型进行文件推理,最高推理帧率可达100帧,秒 .zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功