最新回答 / 慕斯卡4456334
就可以从这个入门课程开始学起啊,我也是python小白,学完这个感觉还是明白了很多的~他好像还有个进阶级别的课程,看完这个也可以再看看那个呀~
2017-08-01
最新回答 / 月下寒霜
s = 'Python was started in 1989 by \"Guido\". Python is free and easy to learn.'print s#把 \n 去掉试试 \"Guido\" 这个也是可以执行的 问题在那个\n 新手如错了请指导
2017-07-31
最赞回答 / qq_梦旅人_3
s = 'python was started in 1989 by "guido".python is free and easy to learn.'print s
2017-07-31
最赞回答 / 梦中楼上月下丶
return '<tr><td>%s</td><td>%s</td></tr>' % (name, score)语句中%s表示将要被替换的内容,% (name, score)表示用于替换的内容,第一个%s被name替换,第二个%s被score替换下面是在pycharm中运行任务代码的输出的结果 <table border="1"><tr><th>Name</th><th>S...
2017-07-30