嘿!欢迎阅读本期内容,我是栗子。
Python是目前最流行的语言之一,它在数据科学、机器学习、web开发、脚本编写、自动化方面被
许多人广泛使用。它的简单和易用性造就了它如此流行的原因~
如果你正在阅读本文,那么你或多或少已经使用过Python或者对Python感兴趣。
作为一名python小白,学的时候感觉都学会了,自己写就废了。是自己能力有问题?还是老师教
的有问题?还是自己不适合干这行。都不是?是自己练习太少了!!!
今天给大家带来一些好玩的案例,提高大家的学习兴趣。
之前很多文章基本上都是在基础知识徘徊,那么今天栗子开始教大家30个新手适合小白的案例自己
开始动手敲代码试试吧!
实践出真知,想知道你Python学的怎么样了,还是得看看这些题目呀~
排列是从简单到难的案例哈。
请分别用for循环跟while循环为例子。
for 循环打印:
for i in range(1, 10):
for j in range(1, i+1):
print('{}x{}={}\t'.format(j, i, i*j), end='')
print()
while 循环实现:
i = 1
while i <= 9:
j = 1
while j <= i:
print("%d*%d=%-2d"%(i,j,i*j),end = ' ') # %d: 整数的占位符,'-2'代表靠左对齐,两个占位符
j += 1
print()
i += 1
结果:
1x1=1
1x2=2 2x2=4
1x3=3 2x3=6 3x3=9
1x4=4 2x4=8 3x4=12 4x4=16
1x5=5 2x5=10 3x5=15 4x5=20 5x5=25
1x6=6 2x6=12 3x6=18 4x6=24 5x6=30 6x6=36
1x7=7 2x7=14 3x7=21 4x7=28 5x7=35 6x7=42 7x7=49
1x8=8 2x8=16 3x8=24 4x8=32 5x8=40 6x8=48 7x8=56 8x8=64
1x9=9 2x9=18 3x9=27 4x9=36 5x9=45 6x9=54 7x9=63 8x9=72 9x9=81
while True:
try:
# 判断输入是否为整数
num = int(input('输入一个整数:'))
# 不是纯数字需要重新输入
except ValueError:
print("输入的不是整数!")
continue
if num % 2 == 0:
print('偶数')
else:
print('奇数')
break
结果:
输入一个整数:100
偶数
def test():
user_input = input("请输入您的姓名:")
if user_input[0] == '李':
return "用户姓李"
return "用户不姓李"
print(test())
结果:
请输入您的姓名:李木子
用户姓李
栗子:
def test():
n = 8
for i in range(-int(n/2), int(n/2) + 1):
print(" "*abs(i), "*"*abs(n-abs(i)*2))
print(test())
结果:
**
****
******
********
******
****
**
如果一个 3 位数等于其各位数字的立方和,则称这个数为水仙花数。例如:153 = 13 + 53 + 33,因此 153 就是一个水仙花数。那么如何求 1000 以内的水仙花数(3 位数)。
def test():
for num in range(100, 1000):
i = num // 100
j = num // 10 % 10
k = num % 10
if i ** 3 + j ** 3 + k ** 3 == num:
print(str(num) + "是水仙花数")
test()
i = 1
for j in range(101):
i = j + i
print(i)
结果:
5051
def test(sum_to):
# 定义一个初始值
sum_all = 0
# 循环想要计算的数据
for i in range(1, sum_to + 1):
sum_all += i * (-1) ** (1 + i)
return sum_all
if __name__ == '__main__':
result = test(sum_to=100)
print(result)
-50
a = [1, 6, 8, 11, 9, 1, 8, 6, 8, 7, 8]
print(sorted(a))
结果:
[1, 1, 6, 6, 7, 8, 8, 8, 8, 9, 11]
L1 = [1, 2, 3, 11, 2, 5, 3, 2, 5, 33, 88]
print(max(L1))
print(min(L1))
结果:
88
1
def test():
a = [1, -6, 2, -5, 9, 4, 20, -3]
# 定义一个数组,存放处理后的绝对值数据
lists = []
for i in a:
# 使用 abs() 方法处理绝对值
lists.append(abs(i))
return lists
print(test())
结果:
[1, 6, 2, 5, 9, 4, 20, 3]
def test():
L1 = [1, 2, 3, 11, 2, 5, 3, 2, 5, 33, 88]
return sorted(L1)[:3]
print(test())
结果:
[1, 2, 2]
def test():
a = ["hello", "world", "yoyo", "congratulations"]
# 统计数组中第一个值的长度
length = len(a[0])
for i in a:
# 循环数组中的数据,当数组中的数据比初始值length中的值长,则替换掉length的默认值
if len(i) > length:
length = i
return length
print(test())
结果:
congratulations
a = [1, 6, 8, 11, 9, 1, 8, 6, 8, 7, 8]
print(sorted(a))
结果:
[1, 1, 6, 6, 7, 8, 8, 8, 8, 9, 11]
def test():
a = [1, 3, 5, 7, 11]
# 逆序打印数组中的数据
print(a[::-1])
# 定义一个计数的变量
count = 0
for i in a:
# 判断每循环列表中的一个数据,则计数器中会 +1
count += 1
# 如果计数器为奇数,则打印出来
if count % 2 != 0:
print(i)
test()
结果:
[11, 7, 5, 3, 1]
1
5
11
例如 [1,2,0,2,1],[1,2,3,3,2,1],这样的数组都是对称数组。
用 Python 判断,是对称数组打印 True,不是打印 False。
def test():
x = [1, 'a', 0, '2', 0, 'a', 1]
# 通过下标的形式,将字符串逆序进行比对
if x == x[::-1]:
return True
return False
print(test())
结果:
True
a = 'hello'
b = 'world'
c = a
a = b
b = c
print(a, b)
def test(n):
sum = 0
for i in range(1, n+1):
sum += i*10+i
return sum
print(test(5))
结果:
225
class Test:
# 计算数字的位数
def test_num(self, num):
try:
# 定义一个 length 的变量,来计算数字的长度
length = 0
while num != 0:
# 判断当 num 不为 0 的时候,则每次都除以10取整
length += 1
num = int(num) // 10
if length > 5:
return "请输入正确的数字"
return length
except ValueError:
return "请输入正确的数字"
# 逆序打印出个位数
def test_sorted(self, num):
if self.test_num(num) != "请输入正确的数字":
# 逆序打印出数字
sorted_num = num[::-1]
# 返回逆序的个位数
return sorted_num[-1]
print(Test().test_sorted('12346'))
结果:
1
def test():
s = 'ajldjlajfdljfddd'
# 定义一个数组存放数据
str_list = []
# for循环s字符串中的数据,然后将数据加入数组中
for i in s:
# 判断如果数组中已经存在这个字符串,则将字符串移除,加入新的字符串
if i in str_list:
str_list.remove(i)
str_list.append(i)
# 使用 sorted 方法,对字母进行排序
a = sorted(str_list)
# sorted方法返回的是一个列表,这边将列表数据转换成字符串
return "".join(a)
print(test())
结果:
adfjl
Python 提供了strip() 方法,可以去除首尾空格,rstrip() 去掉尾部空格,lstrip() 去掉首部空格,replace(" ", “”) 去掉全部空格。
a = ' welcome to my world '
print(a.strip())
还可以通过递归的方式实现:
def trim(s):
flag = 0
if s[:1]==' ':
s = s[1:]
flag = 1
if s[-1:] == ' ':
s = s[:-1]
flag = 1
if flag==1:
return trim(s)
else:
return s
print(trim(' Hello world! '))
通过 while 循环实现:
def trim(s):
while(True):
flag = 0
if s[:1]==' ':
s = s[1:]
flag = 1
if s[-1:] == ' ':
s = s[:-1]
flag = 1
if flag==0:
break
return s
print(trim(' Hello world! '))
a = 'This is string example….wow!'
b = 'Welcome To My World'
print(a.upper())
print(b.lower())
利用 Python 提供的类型转行,将用户输入的数据转换成浮点数类型,如果转换抛异常,则判断数字不是纯数字组成。
def test(num):
try:
return float(num)
except ValueError:
return "请输入数字"
print(test('133w3'))
def test(string, str):
# 定义 last_position 初始值为 -1
last_position = -1
while True:
position = string.find(str, last_position+1)
if position == -1:
return last_position
last_position = position
print(test('hi how are you hello world, hello yoyo!', 'hello'))
结果:
28
def test():
message = 'hi how are you hello world, hello yoyo!'
world = 'hello'
return message.find(world)
print(test())
结果:
15
def test():
message = 'welcome to my world'
world = 'world'
if world in message:
return True
return False
print(test())
结果:
True
def test(str_test, num, counts):
"""
:param str_test: 字符串
:param num: 字符串出现的次数
:param count: 字符串第几次出现的次数
:return:
"""
# 定义一个空数组,存放逻辑处理后的数据
list = []
# for循环字符串的数据
for i in str_test:
# 使用 count 函数,统计出所有字符串出现的次数
count = str_test.count(i, 0, len(str_test))
# 判断字符串出现的次数与设置的counts的次数相同,则将数据存放在list数组中
if count == num:
list.append(i)
# 返回第n次出现的字符串
return list[counts-1]
print(test('gbgkkdehh', 1, 2))
结果:
d
def test():
message = 'Hello, welcome to my world.'
# 计数
num = 0
# for 循环 message
for i in message:
# 判断如果 ‘w’ 字符串在 message 中,则 num +1
if 'w' in i:
num += 1
return num
print(test())
# 结果
2
def test():
message = 'Hello, welcome to my world.'
world = 'welcome'
if world in message:
return message.find(world)
else:
return -1
print(test())
结果:
7
使用 replace 函数,替换字符换即可:
s = 'We are happy.'
print(s.replace(' ', '%20'))
12
结果:
We%20are%20happy.
height = 5
stars = 1
for i in range(height):
print((' ' * (height - i)) + ('*' * stars))
stars += 2
print((' ' * height) + '|')
最简单的:
好啦!文章写到这里结束啦,快来做练习题目吧~看看自己掌握了这些基础知识没哈。