饮冰三年-人工智能-Python-10之C#与Python关系
2021-07-03 08:04
标签:数字 pre 人工智能 style none python spl 图片 col 1:注释 2:字符串 2.1 字符串支持乘法 (特有)。表示输出多次 3:数字 4:while 可以加else 饮冰三年-人工智能-Python-10之C#与Python关系 标签:数字 pre 人工智能 style none python spl 图片 col 原文地址:https://www.cnblogs.com/YK2012/p/9617396.htmlC# 中
单行注释:// 多行注释:/**/
python 中
单行注释:# 多行注释:“““内容”””
C#中
"" 用双引号如("我是字符串")
Python中
"我是字符串"
‘我是字符串‘
"""我是字符串"""
‘‘‘我是字符串‘‘‘
n1 = "Aaron"
n2 = n1 * 10
c# 中的除法
int a = 39/8 ; //a 4
python 中的除法
取全值 a = 39/8 ; #a 为 4.875
取商 a2 = 39//8 ; #a2 为 4
取余 和C#中一致 a3 = 39%8 ; #a3 为 7
幂运算 a4 = 2 ** 5; #a3 为 2*2*2*2*2=32
while 条件:
print("ok")
else:
print("结果")
文章标题:饮冰三年-人工智能-Python-10之C#与Python关系
文章链接:http://soscw.com/index.php/essay/101169.html