python输出与输入
程序员文章站
2022-04-02 11:23:50
1、输出print ("hello, world")#逗号隔开print('The quick brown fox', 'jumps over', 'the lazy dog')#计算print('1+2=',1+2)2、输入#反斜杠 name = input('what\'s your name ?')print ('hi,',name)3、python:缩进方式,大小写敏感#a = int(input("input a number"))if a >= 0:...
1、输出
print ("hello, world") #逗号隔开 print('The quick brown fox', 'jumps over', 'the lazy dog') #计算 print('1+2=',1+2) #反斜杠 \n换号,\t制位 print('I\'m learning\nPython.') #直输r print(r'I\'m learning\nPython.') #直输换行 print('''line1
line2
line3''')
2、输入
name = input('what\'s your name ?') print ('hi,',name)
3、python:缩进方式,大小写敏感
#默认字符串,强制转换 a = int(input("input a number")) if a >= 0: print(a) else: print(-a)
4、编码
print(ord('A')) print(chr(66)) print('ABC'.encode('ascii'))
5、list
从0开始有序集合
classmates = ['Michael', 'Bob', 'Tracy'] print (classmates) print (classmates[0])
本文地址:https://blog.csdn.net/m0_46298473/article/details/108235264
上一篇: Spring(二.Spring DI)
下一篇: 计算机网络(应用层)
推荐阅读
-
Oracle存储过程【带输入输出参数】
-
shell - php的cli如何实现读取用户输入,但隐藏这段字符输出
-
PHP与Python实现Hash比较(一)
-
输入n个数字,并求出它们中间的最大值与最小值
-
编写一个程序,输入一个整数以及要转换的进制,输出转换结果,结果以字符串方式输出,例如 输入10814 16,把10814转换为16进制的字符串“2A3E”,如果输入10814 2,则10814
-
Python编写的com组件发生R6034错误的原因与解决办法
-
Python2.7 在windows命令窗口 输出中文乱码
-
详解Python的Django框架中manage命令的使用与扩展
-
详解Python中dict与set的使用
-
图的邻接矩阵、邻接表遍历(python实现)(递归与非递归)(dfs bfs)