博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python学习(二十二) String(上)
阅读量:5239 次
发布时间:2019-06-14

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

 

 

str1 = "This is a 'test'"print(str1)str1 = 'This is a "test"'print(str1)str1 = "This is a \"test\""print(str1)str1 = 'This is a \'test\' 'print(str1)str1 = "This is a single \string"print(str1)'''len()lower()upper()str()'''print(len("abc"))print("aAbc".lower())print("abc".upper())print("abc" +  str(2))print("hello" + " " + "world")

result:

C:\Users\FeiLiu\AppData\Local\Programs\Python\Python36\python.exe C:/Users/FeiLiu/PycharmProjects/GetBluePageInfo/src/stringTest.pyThis is a 'test'This is a "test"This is a "test"This is a 'test' This is a single string3aabcABCabc2hello world

 

转载于:https://www.cnblogs.com/liufei1983/p/9831048.html

你可能感兴趣的文章
snmpwalk命令常用方法总结
查看>>
网站产品设计
查看>>
代理ARP
查看>>
go 学习笔记(4) ---项目结构
查看>>
java中静态代码块的用法 static用法详解
查看>>
Java线程面试题
查看>>
Paper Reading: Relation Networks for Object Detection
查看>>
Java IO流学习总结
查看>>
day22 01 初识面向对象----简单的人狗大战小游戏
查看>>
mybatis源代码分析:深入了解mybatis延迟加载机制
查看>>
Flask三剑客
查看>>
Hibernate-缓存
查看>>
【BZOJ4516】生成魔咒(后缀自动机)
查看>>
提高PHP性能的10条建议
查看>>
svn“Previous operation has not finished; run 'cleanup' if it was interrupted“报错的解决方法...
查看>>
熟用TableView
查看>>
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>
百度贴吧图片抓取工具
查看>>
服务器内存泄露 , 重启后恢复问题解决方案
查看>>