1.使用方法title()来将姓名设置成合适的格式。
full_name.title()
2.删除空白:删除开头和末尾的空白。rstrip()
a= ‘ python ‘
a = a.rstrip()
echo a
3.python3中把需要打印的内容放到括号中,python3中的print是一个函数,因此括号必不可少。
4.列表:
append()动态的增加列表中的元素,增加到末尾之后
motorcycles = []
motorcycles.append(‘home‘)
insert()可在列表的任何位置增加新的元素
motorcycles.insert(0,‘ducati‘)
时间: 2024-12-27 07:24:31