Python教程
当前位置| > 博客

Python教程

Python是一种面向对象的解释型...
  • python 水仙花数 python">#水仙花数 #narcissistic number #水仙花数是指一个 n 位数 ( n≥3 ),它的每个位上的数字的 n 次幂之和等于它本身。 #(例如:1^3 + 5^3+ 3^3 = 153) import math import string for x in range(1,10): a=x*x*x for y in ... 继续阅读python 水仙花数

    :
    2018-05-16
  • python 五子棋 python">from graphics import * from math import * def gobangwin(): win=GraphWin("this is a gobang game",400,400) #ÖÆ×÷21x21µÄÆåÅÌ win.setBackground("yellow") i1=0 whil... 继续阅读python 五子棋

    :
    2018-05-16
  • Python的socket编程 目前处在学习python的阶段,昨天看到了python的socket模块,分别实现TCP、UDP时间戳回显。 1、tcp通信server和client代码 # tcpServer.py #!/usr/bin/python # -*- coding: utf-8 -*- from socket import * from time import ctime ... 继续阅读Python的socket编程

    :
    2018-05-16