题库 651 道题目
651 道题目, 当前第 34 / 44 页
156
<pre><code>s = " hello " print("|" + ...
Python 单选题 L1 1999年
155
<pre><code>s = "Hello World" print(s.sw...
Python 单选题 L1 1999年
154
<pre><code>s = "hello WORLD python" pri...
Python 单选题 L1 1999年
153
<pre><code>s = "hello world python" pri...
Python 单选题 L1 1999年
152
<pre><code>s = "hello" print(s.upper())...
Python 单选题 L1 1999年
151
<pre><code>print("apple" < "banana")</co...
Python 单选题 L1 1999年
150
<pre><code>s = "hello world" print("lo ...
Python 单选题 L1 1999年
149
<pre><code>print("哈" * 3)</code></pre> ...
Python 单选题 L1 1999年
148
<pre><code>print("年龄:" + 18)</code></pre...
Python 单选题 L1 1999年
147
<pre><code>a = "Hello" b = "World" pri...
Python 单选题 L1 1999年
146
<pre><code>s = "ABC" for i, ch in enume...
Python 单选题 L1 1999年
145
<pre><code>s = "你好,世界!" print(len(s))</...
Python 单选题 L1 1999年
144
<pre><code>s = "Hi" print(s[1:100])</co...
Python 单选题 L1 1999年
143
<pre><code>s = "abcd" print(s[::-1])</c...
Python 单选题 L1 1999年
142
<pre><code>s = "abcdef" print(s[::2])</...
Python 单选题 L1 1999年