sunchenxi

导航

2022年3月25日 #

实验1 Python开发环境使用和编程初体验

摘要: 1 # test1.py 2 print('hey,u') 3 4 print('hey','u') 5 x,y,z=1,2,3 6 print(x,y,z) 7 8 print('x=%d,y=%d,z=%d'%(x,y,z)) 9 print('x={},y={},z={}'.format(x, 阅读全文

posted @ 2022-03-25 14:47 靠谱一星 阅读(51) 评论(1) 推荐(0) 编辑