def user(): # 无参函数
print("hello world!")
def user1(my_id): # 有参函数
print(my_id)
def user2(first_name, last_name): # 有参函数
print(f'My name is {first_name} {last_name}')
print("start...")
user() # 调用无参函数
user1("123456")
user2("John", "Smith")
print("end...")
'''
start...
hello world!
123456
My name is John Smith
end...
'''
# 27.关键字参数
# 更适合使用数值计算的函数,可使用关键字参数来提高可读性。
user2(last_name="liming", first_name="qiuxie")
'''
My name is qiuxie liming
'''
def cal(one, two, three):
print(one * (two + three))
cal(one=12, two=10, three=30) # 480
# 28.返回函数
# 指明函数返回的值,需要print输出返回值。
def power(number): # 一种计算方式number^number
return number ** number
print(power(4)) # 4^4 = 256
# 29.创建可重用函数
# 构建一些常用函数,在需要引用时直接调用,避免重复代码。
def emoji_converter(message):
words = message.split()
emoji = {
"happy": '=^_^=',
"sad": '>﹏<',
"like": '(❤ ω ❤)'
}
output = ""
for word in words:
output += emoji.get(word, word) + " "
return output
message = input("> ")
print(emoji_converter(message))
'''
> I am happy ,but my dag is sad ,because it lose that it like foods.
I am =^_^= ,but my dag is >﹏< ,because it lose that it (❤ ω ❤) foods.
'''
# 30.例外(一种错误处理方式)
# 可用于提示用户输入错误的原因
# 需要测试的代码
try:
age = int(input("> "))
income = 10000
EXP = age - 18
risk = (income * age) / EXP
print(age)
# 可能的错误类型,及对应错误类型的处理方式。
except ZeroDivisionError:
print("EXP cannot be 0")
except ValueError:
print("Invalid value")
'''
> 0
0
> w
Invalid value
'''
文章目录 一 题目二 实验过程 一 题目
Tags
Network、Protocols、SMB、Reconnaissance、Anonymous/Guest Access译文:网络、协议、SMB、侦察、匿名/访客访问Connect
To attack the target machine, you must be on the same network.Connect to the Starting Poi…
select distinct :当我们期望返回的数据不存在重复数据时(每一行的数据都不一样)
例如:表a select distinct a.* from a -- 可以查询出所有的信息
select distinct a.id from a -- 可以查询出id不同的信息,则还是全部…
编译 https://github.com/facebook/rocksdb/blob/main/INSTALL.md 如果您计划在生产中运行 RocksDB,请不要使用默认 make 或 make all 进行编译。这将以调试模式编译 RocksDB,这比发布模式慢得多。 默认存在centos7 build和run rocksdb的脚本 https://g…