提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档
前言
作为一个即将步入大学计算机专业编程新手,正在学习Python,并且使用markdown来写文档。希望找到一个比较好的学习工具,能让我运行一些自己的小demo,总结文档,并能学习其他前辈们的技巧。
一、InsCode是什么?
想找一个能在线编程的网站,最好能让我学习前辈们的代码、展示自己的作品、能够跟更多的前辈们交流,增长自己的编程水平。找了一圈,正好找到了InsCode。
这是一个编程社区,能创建自己的项目,也能看到别人的项目,还能发表评论。
但是,在进入这个网站后,第一感觉是不知道怎么使用这个网站。缺乏指导。第一次进入的时候, 可以弹出一个优秀项目的视频, 以及快速上手的视频, 可以从一个小项目开始, 比如坦克大战等。
二、InsCode模板试用
2.1 创建一个python模板
第一感觉,很好:没有广告!
2.2 创建项目
我想创建一个Python项目,并且运行起来。
2.3 代码
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>如何引入css样式</title>
<link rel="stylesheet" href="style.css" type="text/css">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="heart-container">
<div class="heart"></div>
</div>
<script>
const heartContainer = document.querySelector('.heart-container');
const heart = document.querySelector('.heart');
const containerWidth = heartContainer.offsetWidth;
const containerHeight = heartContainer.offsetHeight;
const heartWidth = heart.offsetWidth;
const heartHeight = heart.offsetHeight;
heartContainer.style.top = `calc(50% - ${containerHeight / 2}px)`;
heartContainer.style.left = `calc(50% - ${containerWidth / 2}px)`;
window.addEventListener('resize', () => {
heartContainer.style.top = `calc(50% - ${containerHeight / 2}px)`;
heartContainer.style.left = `calc(50% - ${containerWidth / 2}px)`;
});
</script>
</body>
总结
提示:这里对文章进行总结:
例如:以上就是今天要讲的内容,本文仅仅简单介绍了pandas的使用,而pandas提供了大量能使我们快速便捷地处理数据的函数和方法。