2017年11月29日

摘要: 1、程序打头声明:# -*- coding: utf-8 -*-2、需要用到注释的时候内容前面加:#内容exp:#!/usr/bin/env python3# -*- coding: utf-8 -*-#不能删掉,防止下载进度的百分比被遮盖‘#’号是注释3、在内容的前后行加三个单引号:'''内容'' 阅读全文
posted @ 2017-11-29 11:25 wei_hu 阅读(99) 评论(0) 推荐(0)
 
摘要: Python2.X使用raw_input() Python3.X废弃了raw_input()函数,使用input()函数替代它 code: 运行结果: please input a data:5 5 <class 'str'> 阅读全文
posted @ 2017-11-29 11:15 wei_hu 阅读(137) 评论(0) 推荐(0)
 
摘要: 运行结果: My name is xiaohu She is 18 years old Her height is 1.830000 m His height is 1.66 m Name: weihu Age: 25 Height: 1.83 Name:weihu Age:25 Height:1. 阅读全文
posted @ 2017-11-29 09:43 wei_hu 阅读(138) 评论(0) 推荐(0)