自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

转载 Python 编程从入门到实践 课后练习2-9

love = 5201314print('The number I like is :' + str(love) + '!')  转载于:https://www.cnblogs.com/lc1314/p/10113865.html

2018-12-13 14:33:00 141

转载 Python动手试试2-7

name = " xiaoluban\nhanxin\t\nmozi "print(name.strip())'''print(name.lstrip())print(name.rstrip())'''  转载于:https://www.cnblogs.com/lc1314/p/10113369.html

2018-12-13 12:57:00 101

转载 Python 字母大小写的转换

1 name = "Ada Lovelace"2 print(name.upper())3 print(name.lower())转载于:https://www.cnblogs.com/lc1314/p/10113131.html

2018-12-13 11:44:00 1247

转载 python 字符串拼接 以及名字首字母大写

first_name = "ada"last_name = "lovelace"full_name = first_name + " " + last_namemessage = "Hello," + full_name.title() + "!"print(message)转载于:https://www.cnblogs.com/lc1314/p...

2018-12-13 11:42:00 1543

转载 python 名字首字母大写

1 name = "lv cheng"2 print("Hello " + name.title() + ",would you like to learn some Python today?")转载于:https://www.cnblogs.com/lc1314/p/10113092.html

2018-12-13 11:39:00 1560

转载 python 输出变量加双引号

1 famous_person = "Steve Jobs once said"2 message = "You've got to find what you love"3 yiqi = famous_person + ',''"'+message+'"'4 print(yiqi)转载于:https://www.cnblogs.com/lc1...

2018-12-13 11:35:00 3320

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除