my_str='I am$ N$iuniu$, an$d I $am stu$dying in $Now$coder!'
#使用split函数将这份字符串从符号$处分割成众多字符列表,记录在my_list中
my_list=my_str.split('$')
print(my_list)
#使用join函数将my_list中的分段字符串重新连接成一个新的字符串,并使用print函数输出
print(''.join(my_list))