实践篇1
本帖最后由 meiyao 于 2024-6-16 16:48 编辑<p>根据书中的if/elif/else使用:</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> 代码:</p>
<pre>
<code>age = 15
if age < 5:
print('you are impossible.')
elif age < 18:
print('you are a minor.')
else:
print('you can vote.')</code></pre>
<p>输出结果:</p>
<p> 编写JUMP.PY使用for循环:</p>
<p> </p>
<p> </p>
<p>实际输出结果:</p>
<p> 书中使用到for循环的有很多地方,我这里就只例出一个。像书口有说用FOR建立新字符串,新的列表等。后面章节还有例出使用for读入一个文件。</p>
<p>代码:</p>
<pre>
<code>for char in 'ABC123':
print(char)</code></pre>
<p>选择变更字符:</p>
<p> </p>
<p>实际输出结果:</p>
<p> </p>
<p> </p>
<p>代码:</p>
<pre>
<code>text = "This is a test string with various characters"
indexes =
for i in indexes:
print(f'{i:02d} {text}')</code></pre>
<p> </p>
补充内容 (2024-6-20 20:43):
共读入围:《趣味微项目,轻松学Python》+实践篇1
页:
[1]