C#与python中format函数相同的函数
时间: 2023-08-13 15:04:00 浏览: 182
Python 专题一 函数的基础知识
在C#中,与Python中的format函数相似的函数是String.Format函数。该函数可以用于将格式化字符串与参数进行替换。
示例:
```csharp
string name = "John";
int age = 30;
string message = String.Format("My name is {0} and I'm {1} years old.", name, age);
Console.WriteLine(message);
```
在Python中,我们可以使用f-string来实现类似的功能。
示例:
```python
name = "John"
age = 30
message = f"My name is {name} and I'm {age} years old."
print(message)
```
注意:C#的String.Format函数使用索引来指定参数的位置,而Python的f-string使用花括号中的变量名来引用参数。
阅读全文