程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

How can Python write a program to input an integer n (1 & lt; =n & lt; =100) from the keyboard and repeatedly output the integer n times.

編輯:Python

example : When entering an integer 3 when , Output “333”; When entering other integers , Output “error”.
【 The sample input 】Enter a number:10
【 Sample output 】10101010101010101010
Really confused , Request answer .




Take the answer :

because input The input is str type , So just multiply by n

n = input(" Input n")print(str(n)*int(n))


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved