Products
GG网络技术分享 2025-11-14 02:53 2
python
string = "hello world"

upper_string = string.upper
print # 输出后来啊:HELLO WORLD
title = "this is a title".upper
print # 输出后来啊:
def converttouppercase: return input_string.upper
example_string = "convert this to uppercase" print) # 输出后来啊:CONVERT THIS TO UPPERCASE
Demand feedback