python - 输入一个原始字符串,例如 hello world。 输出转换后的字符串,例如 hello%20world。
迷茫
迷茫 2017-04-17 17:40:59
0
3
1292

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

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

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

Antworte allen(3)
左手右手慢动作

如果是对参数的dict:

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

如果是字符串:

from urllib import quote
    quote('hello world')
Ty80
from urllib import quote
quote(str)
Ty80

我用 a = raw_input()
a = a.replace(' ','%20')
print a

解决了 。当时放错了 print才没能做出答案来。。。谢谢各位大神 了

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!