2018.2.21 Python 初学习

Posted wongsh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2018.2.21 Python 初学习相关的知识,希望对你有一定的参考价值。

折腾了一天,一直在用CMD学习Python写Hello World。偶然间发现可以用Pycharm。也算是给后面想学习的人提个醒,方便省事许多。

format()使用方法。

age = 20
name = ‘Swaroop‘
print(‘{0} was {1} years old when he wrote this book‘.format(name, age))
print(‘Why is {0} playing with that python?‘.format(name))

 

# 对于浮点数 ‘0.333‘ 保留小数点(.)后三位
print(‘{0:.3f}‘.format(1.0/3))
# 使用下划线填充文本, 并保持文字处于中间位置
# 使用 (^) 定义 ‘___hello___‘字符串长度为 11
print(‘{0:_^11}‘.format(‘hello‘))
# 基于关键词输出 ‘Swaroop wrote A Byte of Python‘
print(‘{name} wrote {book}‘.format(name=‘Swaroop‘, book=‘A Byte of Python‘))

 

输出:
0.333
___hello___
Swaroop wrote A Byte of Python

占位符替换内容
%d 整数
%f 浮点数
%s 字符串
%x 十六进制整数

 

指定以空格结尾,end=’‘

 

 continue 语句,跳过当前循环块中的剩余语句,并开始下一次迭代。

 

 

 















以上是关于2018.2.21 Python 初学习的主要内容,如果未能解决你的问题,请参考以下文章

初入门学习python有哪些用途?

python 初学习 模拟用户登录

Python大数据与机器学习之NumPy初体验

python语言初体验

python之初体验

初学习-python打印乘法表正方形三角形