Python学习:输入输出--”黑箱“

本博客记录的是对Python输入输出的一个简单学习。

一、输入输出基础

最简单直接的输入来自键盘操作,如下:

name = input('your name:')
gender = input('you are a boy?(y/n)')
 
###### 输入 ######
your name:zhu
you are a boy?y

welcome_str = 'Welcome to the matrix {prefix} {name}.'
welcome_dic = {
   
    'prefix': 'Mr.' if gender == 'y' else 'Mrs',
    'name': name
}

print('authorizing...')
print(welcome_str.format(**welcome_dic))

########## 输出 ##########
authorizing...
Welcome to the matrix Mr. zhu.

input() 函数暂停程序运行,同时等待键盘输入;直到回车被按下,函数的参数即为提示语,输入的类型永远是字符串型(str)。注意,初学者在这里很容易犯错,下面的例子会讲到。print() 函数则接受字符串、数字、字典、列表甚至一些自定义类的输出。

a = input()
1
b = input()
2
print('a + b = {}'.format(a + b))

########## 输出 ##############
a + b = 12

print('type of a is {}, type of b is {}'.format(type(a), type(b)))

########## 输出 ##############
type of a is <class 'str'>, type of b is <class 'str'>
print('a + b = {}'.format(int(a
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值