码迷,mamicode.com
首页 > 编程语言 > 详细

python输入输出(二)

时间:2019-01-22 00:36:21      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:lease   hello   code   enter   input   NPU   输入   print   inpu   



输出

>>> print(5)
5
>>> print(5*6)
30
>>> s1 = "hello"
>>> print(s1)
hello
>>> print("hello")
hello
>>> print(5, s1)
5 hello
>>> print("My age is 5")
My age is 5
>>> age = 5
>>> print("My age is %d" % age)
My age is 5

输入

<br/><br/> >>> a = input() 1 >>> a ‘1‘ >>> a = input("please enter your name:") please enter your name:jwang106 >>> a ‘jwang106‘]

python输入输出(二)

标签:lease   hello   code   enter   input   NPU   输入   print   inpu   

原文地址:https://www.cnblogs.com/wangjiale1024/p/10301629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!