Excercise|Excercise 6|learn python the hard way
%s 表示为字符替代符号
%r 表示为引号+字符替代符号
【Excercise|Excercise 6|learn python the hard way】今日练习。
http://learnpythonthehardway.org/book/ex6.html
x = "There are %d types of people." % 10
binary = "binary"
do_not = "don't"
y = "Those who know %s and those who %s." %(binary,do_not)print (x)
print(y)print ("I said: %r." % x)
print("I also said: '%s'" % y)
hilarious = False
joke_evaluation = "Isn't that joke so funny?! %r"print (joke_evaluation % hilarious)w = "This is the left side of ..."
e = "a stromg wotj a rogjt side."print (w + e)
推荐阅读
- 利用Python进行数据分析(5)|利用Python进行数据分析(5) NumPy基础: ndarray索引和切片
- Python小游戏——外星人入侵(保姆级教程)第一章|Python小游戏——外星人入侵(保姆级教程)第一章 07调整飞船速度 08限制飞船活动范围
- python 修改python插件包的默认安装路径
- Python自学教程2(大牛们怎么写注释)
- 机器学习|机器学习之EM算法的原理及推导(三硬币模型)及Python实现
- Python|Python venv虚拟环境跨设备迁移的实现
- Python深度学习之Unet|Python深度学习之Unet 语义分割模型(Keras)
- Python|在Anaconda中用pip安装Pytorch后无法用pycharm打开
- 九章云极DataCanvas YLearn因果学习开源项目荣获“可信AI实践优秀案例”奖
- 梯度下降的线性回归用python_python实现线性回归的梯度下降法