标签:span odi 字符串 i+1 code 换行 usr 输入输出 乘法口诀
输入 input()
输出 print()
#coding:utf-8 #/usr/bin/python """ 2018-11-03 dinghanhua 输入输出 """ ‘‘‘输出print‘‘‘ print(‘hello ‘) #结尾end默认换行 print(‘world‘) print(‘hello ‘,end=‘\t‘) #制定end print(‘world‘) print(‘a‘,‘b‘,‘c‘,sep=‘-‘) #sep指定分隔符
‘‘‘打印乘法口诀表‘‘‘ for i in range(1,10): for j in range(1,i+1): if i==j: print(i, ‘*‘, j, ‘=‘, i * j,end=‘\n‘) else: print(i,‘*‘,j,‘=‘,i*j,end=‘\t‘)
‘‘‘输入input‘‘‘ i = input(‘输入整数‘) print(type(i)) #不管输入什么都是字符串类型 print(int(i)+100)
标签:span odi 字符串 i+1 code 换行 usr 输入输出 乘法口诀
原文地址:https://www.cnblogs.com/dinghanhua/p/9903375.html