Python 控制结构

坚持代码练习,上次的作业你做了吗?
这是参考答案:
Python 控制结构_第1张图片
继续练习,本次测验题目如下:

Question 4 Level 1 Question:
Write a program which accepts a sequence of comma-separated numbers from console and generate a list and a tuple which contains every number.
Suppose the following input is supplied to the program: 34,67,55,33,12,98 Then, the output should be:
[‘34’, ‘67’, ‘55’, ‘33’, ‘12’, ‘98’]
(‘34’, ‘67’, ‘55’, ‘33’, ‘12’, ‘98’)

Hints:
In case of input data being supplied to the question, it should be assumed to be a console input.
tuple() method can convert list to tuple

中文大意:编写一个程序,能够从console接受逗号分隔的数字序列, 然后产生一个列表和一个数组,他们都分别包含这些数字。假如,给定这些数字,5,15,21,9,10,99;

好,开始我们今天的正题,Python的控制语句:

Python provides conditional branching with if statements and

你可能感兴趣的:(Python基础及杂谈)