美文网首页
算法笔试过程中的几个输入输出python语句

算法笔试过程中的几个输入输出python语句

作者: 梦走云端 | 来源:发表于2019-10-08 10:46 被阅读0次

title: python在线笔试学习笔记
localimage: image1
urlname: writenexam
categories:
summary
tags: [writen, exam]
date: 2019-9-17 10:00:00


摘要

本文主要介绍一些算法笔试过程中的几个输入输出python语句的代码格式

  • [x] Edit By Porter, 积水成渊,蛟龙生焉。

字符串型

单行输入

import sys
line = sys.stdin.readline().strip()
print(line)#输出的字符串

多行输入

import sys
if __name__ == "__main__":
    data=[]
while True:
    line = sys.stdin.readline().strip()
    if not line:
        break
    data.append(line)
print("-".join(data))
 
比如输入
1
 
2
 
3
输出:1-2-3

数值型

输入数字

n=int(input())
print(n)#输出为数字

单行输入输出为数组

l=list(map(int,input().split(" ")))
print(l)

输出形式为矩阵

import sys
if __name__ == "__main__":
    data=[]
while True:
    line = sys.stdin.readline().strip()
    if not line:
        break
    tmp = list(map(int, line.split(" ")))
    data.append(tmp)
print(data)

相关文章

  • 算法笔试过程中的几个输入输出python语句

    title: python在线笔试学习笔记localimage: image1urlname: writenexa...

  • 2018-11-12day10-python2和python3

    python2和python3的区别 一、输入输出语句变成了输入输出函数 python2 --- print "...

  • Python自学笔记Day9

    Python自学笔记——Day9 基本输入输出 1. 输出函数及格式化 Python两种输出值的方式: 表达式语句...

  • sys.stdin/stdout标准输入输出—2018-04-2

    在使用Python标准输入输出时(在笔试题中要求较多),平时使用大多是raw_input与print。因此,下面将...

  • python的30个冷知识

    目录 基本常识 数据结构部分 输入输出函数部分 基本常识 Python没有switch/ case 语句。 如何中...

  • 一文带你快速入门Python

    作者:语法糖Quant 个人公众号: Python与算法之美 一,输入输出 输入:input(输入的都是字符串) ...

  • 2018-09-09

    前端笔试第一坑:nodejs输入输出(一): 参考:nodejs oj在线笔试应对方案(讲几种输入处理方法) - ...

  • scala常用逻辑语句

    1.输入输出语句1.1 输出语句: 1.2 输入语句:readline():类似于java中的system.in或...

  • 如何准备校招算法面试(一)

    前言 在2016年的校招过程中面试了很多大公司,做了很多套笔试题,遇到了很多算法面试场景。深知其中的水深火热,笔试...

  • JavaScrip学习总结(1)

    流程结构 顺序结构所有语句从上到下,逐条执行主要包括: 注释语句,赋值语句,输入输出等语句 分支结构if(){}e...

网友评论

      本文标题:算法笔试过程中的几个输入输出python语句

      本文链接:https://www.haomeiwen.com/subject/cpxbpctx.html