python100道经典例题——第十天

简介: python100道经典例题——第十天

python入门题
每天五题练习
本文章记录了python经典编程题目,初学者必须要学会哦

实例 046:

题目:计算字符串长度。  

sStr1 = 'strlen123'
print (len(sStr1))
实例 047:

题目:输出一个随机整数。

import random

# 生成 10 到 20 之间的随机整数
print(random.randint(10, 20))
实例 048:

题目:数字比较。

if __name__ == '__main__':
    i = 40
    j = 20
    if i > j:
        print ('%d 大于 %d' % (i,j))
    elif i == j:
        print ('%d 等于 %d' % (i,j))
    elif i < j:
        print ('%d 小于 %d' % (i,j))
    else:
        print ('未知')
实例 049:

题目:两个变量值互换。

def exchange(a, b):
    a, b = b, a
    return (a, b)

if __name__ == '__main__':
    x = 10
    y = 20
    print('x = %d,y = %d' % (x, y))
    x, y = exchange(x, y)
    print('x = %d,y = %d' % (x, y))
实例 050:

题目:编写程序,用*打印一个如下所示的等腰直角三角形。

for i in range(1,5):
    for j in range(1,i+1):
        print("*",end="")
    print()

今天的任务完成啦~
明天继续加油~冲冲冲!

相关文章
|
24天前
|
存储 机器学习/深度学习 算法
蓝桥杯练习题(二):Python组之基础练习三十题
蓝桥杯Python编程练习题的集合,包含了三十个不同难度的编程题目,覆盖了基础语法、数据结构和算法等领域。
22 0
python100道经典例题——第一天
python100道经典例题——第一天
python100道经典例题——第九天
python100道经典例题——第九天
|
数据安全/隐私保护 Python
python100道经典例题——第七天
python100道经典例题——第七天
python100道经典例题——第六天
python100道经典例题——第六天
python100道经典例题——第八天
python100道经典例题——第八天
python100道经典例题——第四天
python100道经典例题——第四天
|
数据安全/隐私保护 Python
python100道经典例题——第三天
python100道经典例题——第三天
|
数据安全/隐私保护 Python
python100道经典例题——第五天
python100道经典例题——第五天
python100道经典例题——第二天
python100道经典例题——第二天