Git的使用
1、git add .
2、git commit -m ‘xxx’
3、git push -u master
vi xx
修改文件
git add .
添加文件 (添加目录必须目录有文件)
git commit -m ‘ 备注’
添加备注
git push -u origin (起源)master (主)
进行推送
删除github 项目的话 在setting下的 delete`
demo:
代码.png
input的使用
#price=input('xigua_price=')
#weight=input('xigua_weight')
price_flo=float(input('xigua_price='))
weight_flo=float(input('xigua_weight'))
print('price =',price_flo*weight_flo)
print("price%.3f元/斤\nweight%.3f斤\nweight%.3d斤\n"% (price_flo,weight_flo, weight_flo))
`
网友评论