zoukankan      html  css  js  c++  java
  • Python中的join()函数的用法

    函数:string.join()

    Python中有join()和os.path.join()两个函数,具体作用如下:

    join():连接字符串数组。将字符串、元组、列表中的元素以指定的字符(分隔符)连接生成一个新的字符串
    os.path.join():将多个路径组合后返回

     

    一、函数说明

    1、join()函数

    语法:'sep'.join(seq)

    参数说明
    sep:分隔符。可以为空
    seq:要连接的元素序列、字符串、元组、字典


    上面的语法即:以sep作为分隔符,将seq所有的元素合并成一个新的字符串

    返回值:返回一个以分隔符sep连接各个元素后生成的字符串

     

    2、os.path.join()函数

    语法:os.path.join(path1[,path2[,......]])

    返回值:将多个路径组合后返回

    注:第一个绝对路径之前的参数将被忽略

     

    二、实例

    1.对序列进行操作(以 '.'为分隔符)

    seq = ['hello','good','boy','doiido']

    print('.'.join(seq))

    hello.good.boy.doiido

     

    2.对元组进行操作(以 ':'为分隔符)

    seq = ('hello','good','boy','doiido')

    print(':'.join(seq))

    hello:good:boy:doiido

     

    3.对字典进行操作

    seq = {'hello':1,'good':2,'boy':3,'doiido':4}

    print(':'.join(seq))

    doiido:boy:hello:good

     

    4.合并目录

    import os

    print(os.path.join('/hello/','good/boy/','doiido'))

    /hello/good/boy/doiido

     

    三.Json字典转为SQL语句

    #表名polls_questions

    table_name = "polls_questions"

     

    #需要插入的Json数据
    data={'id': 1, 'question_text': 'you buy pro6?', 'pub_date':'2016-07-23 09:58:56.000000'}

     

    #对每一个值加单引号
    for key in data:
      data[key] = "'" + str(data[key]) + "'"

     

    #利用join()函数把id、question_text、pub_date合并在一起(id,question_text,pub_date)
    key = ','.join(data.keys())


    #利用join()函数把值合并在一起('1','you buy pro6?','2016-07-23 09:58:56.000000')
    value = ','.join(data.values())

     

    #INSERT INTO polls_questions (id,pub_date,question_text) VALUES ('1','2016-07-23 09:58:56.000000','you buy pro6?')

    real_sql = "INSERT INTO " + table_name + " (" + key + ") VALUES (" + value + ")"

     

  • 相关阅读:
    poj----1330Nearest Common Ancestors(简单LCA)
    Tarjan--LCA算法的个人理解即模板
    hdu----(4545)魔法串(LCS)
    hdu---(1325)Is It A Tree?(并查集)
    hdu----(1599)最大子矩阵(几何/dp)
    hdu---(1054)Strategic Game(最小覆盖边)
    整理的一些模版LCS(连续和非连续)
    hdu---(4310)Hero(贪心算法)
    hdu----(4308)Saving Princess claire_(搜索)
    hdu------(4302)Holedox Eating(树状数组+二分)
  • 原文地址:https://www.cnblogs.com/hjhsysu/p/5700962.html
Copyright © 2011-2022 走看看