发布网友 发布时间:2022-04-07 11:03
共3个回答
懂视网 时间:2022-04-07 15:25
python怎么创建字符串变量?
字符串是 Python 中最常用的数据类型。我们可以使用引号('或")来创建字符串。
创建字符串很简单,只要为变量分配一个值即可。例如:
var1 = 'Hello World!' var2 = "Python PHP"
Python 访问字符串中的值
Python 不支持单字符类型,单字符在 Python 中也是作为一个字符串使用。
Python 访问子字符串,可以使用方括号来截取字符串,如下实例:
实例(Python 2.0+)
#!/usr/bin/python var1 = 'Hello World!' var2 = "Python PHP" print "var1[0]: ", var1[0] print "var2[1:5]: ", var2[1:5]
以上实例执行结果:
var1[0]: H var2[1:5]: ytho
热心网友 时间:2022-04-07 12:33
变量可以直接和路径字符串拼到一起使用,或者使用os.path.join函数来拼接路径。
下面我写了一个演示代码给你参考。注意我没有写文件名合法性的验证,需要你自己写。
import os
def getpath():
bpth=''
while not os.path.exists(bpth):
bpth=input('请输入一个有效的根路径:')
hasdir=''
while hasdir!='Y' and hasdir!='N':
hasdir=input('是否为文件创建一个文件夹?Y/N:')
if(hasdir=='Y'):
dirpth=input('请输入文件夹名称:')
dirpth=os.path.join(bpth,dirpth)
os.makedirs(dirpth)
else:
dirpth=bpth
return dirpth
fpath=getpath()
fname=input('请输入文件名称及后缀名:')
fpath=os.path.join(fpath,fname)
file=open(fpath,'w')
file.close()
热心网友 时间:2022-04-07 13:51
str语句,或用%的形式带入,具体可以上网了解一下