以下是第61到70题的代码示例:
- 编写一个程序,判断一个字符串是否是回文串(正向和反向拼写都相同)。
def is_palindrome(string):
return string == string[::-1]
string = input("请输入一个字符串:")
if is_palindrome(string):
print("是回文串")
else:
print("不是回文串")
- 编写一个程序,找出列表中出现频率最高的元素。
from collections import Counter
num_list = [1, 2, 3, 4, 2, 2, 3, 4, 4, 4]
counter = Counter(num_list)
most_common = counter.most_common(1)
print("出现频率最高的元素是:", most_common[0][0])
- 编写一个程序,找出两个列表中的公共元素。
list1 = [1, 2, 3, 4, 5]
list2 = [4, 5, 6, 7, 8]
common_elements = list(set(list1) & set(list2))
print("两个列表中的公共元素为:", common_elements)
- 编写一个程序,计算一个列表中所有奇数的平均值。
num_list = [1, 2, 3, 4, 5, 6, 7, 8, 9]
odd_numbers = [num for num in num_list if num % 2 != 0]
average = sum(odd_numbers) / len(odd_numbers)
print("所有奇数的平均值为:", average)
- 编写一个程序,判断一个年份是否是闰年。
def is_leap_year(year):
if year % 400 == 0:
return True
elif year % 100 == 0:
return False
elif year % 4 == 0:
return True
else:
return False
year = int(input("请输入一个年份:"))
if is_leap_year(year):
print(year, "是闰年")
else:
print(year, "不是闰年")
- 编写一个程序,将一个整数列表中的所有元素去重。
num_list = [1, 2, 3, 4, 2, 2, 3, 4, 4, 4]
unique_numbers = list(set(num_list))
print("去重后的列表为:", unique_numbers)
- 编写一个程序,判断一个字符串是否是有效的括号序列(即括号的开闭匹配正确)。
def is_valid_parentheses(s):
stack = []
mapping = {')': '(', '}': '{', ']': '['}
for char in s:
if char in mapping.values():
stack.append(char)
elif char in mapping.keys():
if not stack or mapping[char] != stack.pop():
return False
return not stack
string = input("请输入一个括号序列:")
if is_valid_parentheses(string):
print("是有效的括号序列")
else:
print("不是有效的括号序列")
- 编写一个程序,找出一个列表中第k大的元素。
def find_kth_largest(lst, k):
sorted_list = sorted(lst, reverse=True)
return sorted_list[k-1]
num_list = [1, 5, 2, 8, 4, 9, 3]
k = 3
kth_largest = find_kth_largest(num_list, k)
print("列表中第", k, "大的元素为:", kth_largest)
- 编写一个程序,判断一个数是否为质数(只能被1和自身整除)。
def is_prime(num):
if num < 2:
return False
for i in range(2, int(num**0.5) + 1):
if num % i == 0:
return False
return True
number = int(input("请输入一个整数:"))
if is_prime(number):
print(number, "是质数")
else:
print(number, "不是质数")
- 编写一个程序,统计一个字符串中每个单词的长度,并输出最长和最短的单词长度。
string = input("请输入一个字符串:")
words = string.split()
word_lengths = [len(word) for word in words]
max_length = max(word_lengths)
min_length = min(word_lengths)
print("最长单词长度:", max_length)
print("最短单词长度:", min_length)
这是第61到70题的代码示例。如果还有其他问题,请继续提问!