recherche

Maison  >  Questions et réponses  >  le corps du texte

python - 输入一个原始字符串,例如 hello world。 输出转换后的字符串,例如 hello%20world。

输入一个原始字符串, hello world。 输出转换后的字符串, hello%20world。

新手 不会呀 求大神教怎么才能这样输出。。。。。

迷茫迷茫2803 Il y a quelques jours1320

répondre à tous(3)je répondrai

  • ringa_lee

    ringa_lee2017-04-17 17:42:59

    s'il est dicté sur le paramètre:

    from urllib import urlencode
        data = {
             'name': 'hello world'
        }
        print urlencode(data)

    s'il s'agit d'une chaîne:

    from urllib import quote
        quote('hello world')

    répondre
    0
  • PHP中文网

    PHP中文网2017-04-17 17:42:59

    from urllib import quote
    quote(str)

    répondre
    0
  • PHP中文网

    PHP中文网2017-04-17 17:42:59

    J'utilise a = raw_input()
    a = a.replace(' ',' ')
    imprimer un

    Résolu. Je n'ai pas pu trouver de réponse car j'ai égaré l'impression. . . Merci à tous

    répondre
    0
  • Annulerrépondre