我正在读.pyc包含字节码,这是Python解释器将源代码编译成的代码。然后,此代码由Python的虚拟机执行。
但是,由于我是第一次学习Django,并且是从Node.js中学来的,所以有点不同,每次我在终端python manage.py runserver上键入内容时,它都会创建同一文件的多个版本,但格式为.pyc ,根据定义,我猜这是编译版本,因此速度更快,但我认为文件太多,这正常吗?如果不想将其编译为包含所有这些额外文件怎么办?我是第一次学习python和Django,请有人澄清一下。这是我所说的多余文件的图片:
在我遵循的教程中,他们都有
from django.conf.urls import path,
并且新版本的Django具有
from django.conf.urls import url,
只是想确保它们是正确的?
谢谢
答案 0 :(得分:0)
最好不要在边栏中显示那些/* css/external.css */
html,body{
padding:0; margin:0;
}
.main{
width:980px; margin:0 auto;
}
#paragraph{
height:100px; background-color:silver; padding:10px; border:1px dashed black;
margin:10px 0; overflow:hidden;
}
文件。您可以通过将以下行放在user/workspace settings中来做到这一点。
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>
<head>
<meta http-equiv='content-type' content='text/html;charset=utf-8' />
<meta name='viewport' content='width=device-width, height=device-height, initial-scale:1, user-scalable=no' />
<title>Paratext</title>
<link type='text/css' rel='stylesheet' href='css/external.css' />
<script src='js/external.js'></script>
</head>
<body>
<div class='main'>
<h1>Ali Rizwan</h1>
<p id='paragraph'>Box changes text based on what color is clicked</p>
<p id='buttons'>
<input type='button' id='greenColor' value='Green' />
<input type='button' id='blueColor' value='Blue' />
</p>
</div>
</body>
</html>