欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python学习之路

程序员文章站 2023-11-08 21:03:10
python学习之路-01 x = 1+2+3+4 print(x) print(x*5) y = x*5 print(y+100-45+2) print('泰哥泰哥,我是小弟') print('泰哥泰哥,我是三弟小妹') t-t = 2 3t_t = 23 *r = 4 _ = 'fdsa' __ ......

python学习之路-01

x = 1+2+3+4
print(x)
print(x*5)
y = x*5
print(y+100-45+2)

print('泰哥泰哥,我是小弟')
print('泰哥泰哥,我是三弟小妹')


t-t = 2
3t_t = 23
*r = 4
_ = 'fdsa'
___ = 4
%- = 'fdsa'
2w = 5
qwe-r = 'wer'

kfdsdlafhsdakfhdsakdfjkhsdakf = '太白'
print(名字)
ageofoldboy = 56

numberofstudents = 80

#下划线

age_of_oldboy = 56

number_of_students = 80


age1 = 12 
age2 = age1
age3 = age2
age2 = 100
age3 = 5
print(age1,age2,age3) #12, 100 ,100
					  #12,12,12,
					  #12,100,12
					  #100,100,100,

print(100,type(100))
print('100',type('100'))

print(1)
print("jsdfdsfsadl;fjdsal;j")
print("i'm a teacher")


a = '泰哥'
b = '小二'
c = a + b
print(c)
print('泰哥' + '小二' +'货')

print('坚强'*8)


msg = """
今天我想写首小诗,
歌颂我的同桌,
你看他那乌黑的短发,
好像一只炸毛鸡。
"""
#print(msg)
print(true,type(true))
print('true',type('true'))

name = input('请输入你的名字:')
age = input('请输入你的年龄:')
print('我的名字是'+name,'我的年龄'+age+'岁')
#第一种: if 4 > 5 : print('我请你喝酒') print('喝什么酒') #第二种: if 4 > 5: print('我请你喝酒') else: print('喝什么酒') #多选: num = input('请输入您猜的数字:') if num == '1': print('一起抽烟') elif num == '2': print('一起喝酒') elif num == '3': print('新开了一家,走看看') else: print('你猜错了.....') score = int(input("输入分数:")) if score > 100: print("我擦,最高分才100...") elif score >= 90: print("a") elif score >= 60: print("c") elif score >= 80: print("b") elif score >= 40: print("d") else: print("太笨了...e") name = input('请输入名字:') age = input('请输入年龄:') if name == '小二': if age == '18': print(666) else: print(333) else: print('错了....') #while print('111') while true: print('我们不一样') print('在人间') print('痒') print('222') #从1--100 count = 1 flag = true #标志位 while flag: print(count) count = count + 1 if count > 100 : flag = false count = 1 while count <= 100: print(count) count = count + 1 count = 1 sum = 0 while count <= 100: sum = sum + count count = count + 1 print(sum) #break ''' print('11') while true: print('222') print(333) break print(444) print('abc') count = 1 while true: print(count) count = count + 1 if count > 100:break print(111) count = 1 while count < 20 : print(count) continue count = count + 1 count = 0 while count <= 100 : count += 1 if count > 5 and count < 95: continue print("loop ", count) print("-----out of while loop ------")