V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
Loop680
V2EX  ›  Python

这道题什么意思啊,没看懂,请帮我讲一下吧……

  •  
  •   Loop680 · Mar 10, 2015 · 3631 views
    This topic created in 4072 days ago, the information mentioned may be changed or developed.
    The len() function is used to count how many characters a string contains.
    Get the first half of the string stored in the variable 'phrase'.
    Note: Remember about type conversion.

    phrase = """
    It is a really long string
    triple-quoted strings are used
    to define multi-line strings
    """
    first_half = ???????
    print(first_half)

    就是问???那里写什么,我一直没搞懂first_half指什么。
    6 replies    2015-03-10 16:49:39 +08:00
    cloverstd
        1
    cloverstd  
       Mar 10, 2015   ❤️ 1
    first_half = phrase[:len(phrase)]
    我想是这样的
    stupidcat
        2
    stupidcat  
       Mar 10, 2015   ❤️ 1
    half嘛 就是一半 first half就是前面一半 所以len()/2 再切片就好 是不是我想得太简单了
    lingxi27
        3
    lingxi27  
       Mar 10, 2015   ❤️ 1
    phrase[0:len(phrase)//2]

    截取前半部分,大概是这个意思吧
    Loop680
        4
    Loop680  
    OP
       Mar 10, 2015
    @cloverstd
    @stupidcat
    @lingxi27
    多谢多谢,就是这样哈。
    mengjue
        5
    mengjue  
       Mar 10, 2015
    就是前半的意思,英语需要好好学习。
    first_half = phrase[:len(phrase)//2]应该就编译通过了。
    Loop680
        6
    Loop680  
    OP
       Mar 10, 2015
    @mengjue 我是直接用88/2写进去,太耿直了……
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2570 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 42ms · UTC 14:47 · PVG 22:47 · LAX 07:47 · JFK 10:47
    ♥ Do have faith in what you're doing.