本文目录一览:
如何做一个表白的代码
要想做一个可以表白的代码,首先你就要学会C语言或者是C加加,如果你不会的话永远都没有办法做出来的,而且现在网上有很多脚本直接可以下载的。
如何用python写一段代码?
简单的,可以使用python 的CGI模块,需要你的服务器开启CGI支持。
网页内容如下:
html
head
meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /
titlepython cgi/title
/headbody
p style="font-size:24pt;color:red"输入登录密码:/p
form name="zhaji" action="login.py" method="post"
p密 码:input type="password" name="ma" size="9"/p
input type="button" name="shuru" value="登录" onclick="zhaji.submit()"
/form
/body/html
login.py文件内容如下:
#!/usr/bin/python
#coding:utf-8
import cgi
form = cgi.FieldStorage()
ma = ""
if 'ma' in form:
ma = form["ma"].value
print '''Content-Type: text/html\n\n'''
print '''htmlheadmeta http-equiv="Content-Type" content="text/html; charset=UTF-8" / titlepython cgi/title/headbodyp你输入的密码是:%s/p /body/html''' % ma
怎么用python简单的制作一个网页
1、打开sublime text 3,新建一个PY文件。
2、import os,因为涉及到系统文件路径的原因,我们这里先导入系统模块。
3、html = open("E:\\Download\\new\\new.html", "w"),创建变量,然后设置文件名字,注意用w写方式来进行,这样就会创建一个新的HTML文件。
4、html.write("!DOCtype HTML\
\nheadtitle新的网页/title/head\
\nbodyh1大家好啊/h1/body")
这个时候就可以写入相关的HTML代码了。
5、这个时候可以双击打开HTML文件,那么就可以看到书写的网页了。
6、然后加上html.close(),记得加上这行代码来关闭,不然会占用很多内存,这样就完成了。
求编写一个表白程序?
JAVA
传说中规范的爱情代码(2010-11-10 21:37:36)
转载
标签:it
private final static DEPOSIT = 100000;
private final static FELLING = 8;
public void love(boy, girl) {
Boolean isMarried = false;
if(boy.有房() boy.有车()) {
doMarry(boy, girl);
isMarried = true;
} else if(girl.愿意等()) {
while(!(boy.赚钱 DEPOSIT girl.感情 FELLING)) {
for(int day=1; day =365; day++) {
if( day == 情人节 ) {
if(boy.givegirl(玫瑰)) {
girl.感情++;
} else {
girl.感情--;
}
}
if(day == girl.生日) {
if( boy.givegirl(玫瑰) )
{
girl.感情++;
}
else {
girl.感情--;
boy.拼命赚钱();
}
}
}
if(boy.有房() boy.有车()) {
doMarry(boy, girl);
isMarried = true;
break;
}
年龄++;
girl.感情--;
}
}
if(!IsMarried) {
girl.goto(another_boy);
}
private void doMarry(boy, girl) {
boy.set(nothing);
girl.嫁给(boy);
}
520怎么表白,Python程序猿都是这样操作的
import turtle
t = turtle.Pen()
turtle.bgcolor("black")
my_name=turtle.textinput("请输入你想表白的话","你的表白?")
colors=["red","yellow","purple","blue"]
for x in range(100):
t.pencolor(colors[x%4])
t.penup()
t.forward(x*4)
t.pendown()
t.write(my_name,font=("Arial",int((x+4)/4),"bold"))
t.left(92)
print("####结束####")