1.整行注释
#这是一个整行注释的例子
2.行尾注释
print('This is a sample code') # 输出到调试窗口
使用print输出字符串,使用\n进行换行
print('Hello Python World\nThis is a sample code!')
Hello Python World
This is a sample code!
使用print输出字符串变量
#输出字符串变量
strOut="This is a string !"
print(strOut) #输出strOut
This is a string !
使用print输出数值
print(123) #输出数值123
123
使用print输出数值变量
#输出数值变量
a ,b = 1 , 2.5
print(a,b) #输出1 2.5
1 2.5
使用print进行运算输出
#进行运算输出
a ,b = 1 , 2.5
print(a+b) #3.5
3.5
使用sep为print输出添加分隔符
#为输出添加分隔符
print('partA','partB','partC',b, sep= '.') #输出partA.partB.partC.2.5
partA.partB.partC.2.5
#条件语句
a ,b = 1 , 2.5
if(a>b):
print('a>b')
elif(a==b):
print('a=b')
else:
print('a)
a
for i in '123':
a = int(i)
print(i,'*',i,'=',a*a) #1*2*3*
1 * 1 = 1
2 * 2 = 4
3 * 3 = 9
print('Hello Python World\r\nThis is a sample code!')
#输出字符串变量
strOut="This is a string !"
print(strOut) #输出strOut
#输出数值
print(123) #123
#输出数值变量
a ,b = 1 , 2.5
print(a,b) #1 2.5
#进行运算输出
a ,b = 1 , 2.5
print(a+b) #1 2.5
#为输出添加分隔符
print('partA','partB','partC',b, sep= '.') #partA.partB.partC.2.5
#条件语句
a ,b = 1 , 2.5
if(a>b):
print('a>b')
elif(a==b):
print('a=b')
else:
print('a)
#循环语句
for i in '123':
a = int(i)
print(i,'*',i,'=',a*a)
print('\r')