用pythone写一段程序,实现一个字符串去掉重复字符
时间: 2023-03-14 14:42:55 浏览: 98
s = 'abcabc'# 初始化一个空字符串用来存储结果
res = ''# 遍历字符串中的每一个字符
for c in s:
# 如果字符不在结果字符串中,就添加到结果字符串
if c not in res:
res += c# 输出最终的结果
print(res) # abc
相关问题
用pythone写一段程序,实现字符串去重
示例:str1 = "hello world"str2 = ""for ch in str1:
if ch not in str2:
str2 += chprint(str2)# 输出:helo wrd
用JavaScript写一段程序实现找出字符串中特定字符的个数
当然可以,以下是使用 JavaScript 编写的程序,可以找出指定字符在字符串中出现的次数:
```javascript
function countChar(str, char) {
let count = 0;
for (let i = 0; i < str.length; i++) {
if (str[i] === char) {
count++;
}
}
return count;
}
// 示例
const str = "Hello World!";
const char = "l";
console.log(`"${str}" 中 "${char}" 出现的次数为:${countChar(str, char)}`);
```
运行结果为:
```
"Hello World!" 中 "l" 出现的次数为:3
```
你可以将 `str` 和 `char` 的值替换为你需要的字符串和特定字符,然后调用 `countChar` 函数即可得到结果。
阅读全文