Guest User

Untitled

a guest
Jan 15th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.60 KB | None | 0 0
  1. def convert(n):
  2. if n < 10:
  3. return placement(n,1)
  4. elif n == 10:
  5. return "ten"
  6. elif n > 10 and n < 20:
  7. return teen(n)
  8. elif n >= 20 and n < 100:
  9. if int(str(n)[1]) == 0:
  10. return placement(str(n)[0],2)
  11. else:
  12. return placement(str(n)[0],2)+convert(int(str(n)[1]))
  13. elif len(str(n)) == 3:
  14. x = ""
  15. h = placement(str(n)[0], 3)
  16. if int(str(n)[1]) == 0 and int(str(n)[2]) == 0:
  17. return h
  18. else:
  19. z = int(str(n)[1]+"0")+int(str(n)[2])
  20. x = h + "and" + str(convert(z))
  21. return x
  22. elif len(str(n)) == 4:
  23. x = ""
  24. t = placement(str(n)[0], 4)
  25. if int(str(n)[1]) == 0 and int(str(n)[2]) == 0 and int(str(n)[3]) == 0:
  26. return t
  27. def teen(n):
  28. n = int(n)
  29. if n == 11:
  30. return "eleven"
  31. if n == 12:
  32. return "twelve"
  33. if n == 13:
  34. return "thirteen"
  35. if n == 14:
  36. return "fourteen"
  37. if n == 15:
  38. return "fifteen"
  39. if n == 16:
  40. return "sixteen"
  41. if n == 17:
  42. return "seventeen"
  43. if n == 18:
  44. return "eighteen"
  45. if n == 19:
  46. return "nineteen"
  47. else:
  48. return ""
  49. def placement(n,p):
  50. n = int(n)
  51. if p == 1:
  52. if n == 1:
  53. return "one"
  54. if n == 2:
  55. return "two"
  56. if n == 3:
  57. return "three"
  58. if n == 4:
  59. return "four"
  60. if n == 5:
  61. return "five"
  62. if n == 6:
  63. return "six"
  64. if n == 7:
  65. return "seven"
  66. if n == 8:
  67. return "eight"
  68. if n == 9:
  69. return "nine"
  70. else:
  71. return ""
  72. if p == 2:
  73. if n == 1:
  74. return "ten"
  75. if n == 2:
  76. return "twenty"
  77. if n == 3:
  78. return "thirty"
  79. if n == 4:
  80. return "fourty"
  81. if n == 5:
  82. return "fifty"
  83. if n == 6:
  84. return "sixty"
  85. if n == 7:
  86. return "seventy"
  87. if n == 8:
  88. return "eighty"
  89. if n == 9:
  90. return "ninety"
  91. else:
  92. return ""
  93. if p == 3:
  94. if n != 0:
  95. return placement(n,1) + "hundred"
  96. else:
  97. return ""
  98. if p == 4:
  99. if n != 0:
  100. return placement(n,1) + "thousand"
  101. else:
  102. return ""
  103. z = 0
  104. for x in range(1,1001):
  105. z += len(convert(x))
  106. print z
  107.  
  108. one
  109. two
  110. three
  111. four
  112. five
  113. six
  114. seven
  115. eight
  116. nine
  117. ten
  118. eleven
  119. twelve
  120. thirteen
  121. fourteen
  122. fifteen
  123. sixteen
  124. seventeen
  125. eighteen
  126. nineteen
  127. twenty
  128. twentyone
  129. twentytwo
  130. twentythree
  131. twentyfour
  132. twentyfive
  133. twentysix
  134. twentyseven
  135. twentyeight
  136. twentynine
  137. thirty
  138. thirtyone
  139. thirtytwo
  140. thirtythree
  141. thirtyfour
  142. thirtyfive
  143. thirtysix
  144. thirtyseven
  145. thirtyeight
  146. thirtynine
  147. fourty
  148. fourtyone
  149. fourtytwo
  150. fourtythree
  151. fourtyfour
  152. fourtyfive
  153. fourtysix
  154. fourtyseven
  155. fourtyeight
  156. fourtynine
  157. fifty
  158. fiftyone
  159. fiftytwo
  160. fiftythree
  161. fiftyfour
  162. fiftyfive
  163. fiftysix
  164. fiftyseven
  165. fiftyeight
  166. fiftynine
  167. sixty
  168. sixtyone
  169. sixtytwo
  170. sixtythree
  171. sixtyfour
  172. sixtyfive
  173. sixtysix
  174. sixtyseven
  175. sixtyeight
  176. sixtynine
  177. seventy
  178. seventyone
  179. seventytwo
  180. seventythree
  181. seventyfour
  182. seventyfive
  183. seventysix
  184. seventyseven
  185. seventyeight
  186. seventynine
  187. eighty
  188. eightyone
  189. eightytwo
  190. eightythree
  191. eightyfour
  192. eightyfive
  193. eightysix
  194. eightyseven
  195. eightyeight
  196. eightynine
  197. ninety
  198. ninetyone
  199. ninetytwo
  200. ninetythree
  201. ninetyfour
  202. ninetyfive
  203. ninetysix
  204. ninetyseven
  205. ninetyeight
  206. ninetynine
  207. onehundred
  208. onehundredandone
  209. onehundredandtwo
  210. onehundredandthree
  211. onehundredandfour
  212. onehundredandfive
  213. onehundredandsix
  214. onehundredandseven
  215. onehundredandeight
  216. onehundredandnine
  217. onehundredandten
  218. onehundredandeleven
  219. onehundredandtwelve
  220. onehundredandthirteen
  221. onehundredandfourteen
  222. onehundredandfifteen
  223. onehundredandsixteen
  224. onehundredandseventeen
  225. onehundredandeighteen
  226. onehundredandnineteen
  227. onehundredandtwenty
  228. onehundredandtwentyone
  229. onehundredandtwentytwo
  230. onehundredandtwentythree
  231. onehundredandtwentyfour
  232. onehundredandtwentyfive
  233. onehundredandtwentysix
  234. onehundredandtwentyseven
  235. onehundredandtwentyeight
  236. onehundredandtwentynine
  237. onehundredandthirty
  238. onehundredandthirtyone
  239. onehundredandthirtytwo
  240. onehundredandthirtythree
  241. onehundredandthirtyfour
  242. onehundredandthirtyfive
  243. onehundredandthirtysix
  244. onehundredandthirtyseven
  245. onehundredandthirtyeight
  246. onehundredandthirtynine
  247. onehundredandfourty
  248. onehundredandfourtyone
  249. onehundredandfourtytwo
  250. onehundredandfourtythree
  251. onehundredandfourtyfour
  252. onehundredandfourtyfive
  253. onehundredandfourtysix
  254. onehundredandfourtyseven
  255. onehundredandfourtyeight
  256. onehundredandfourtynine
  257. onehundredandfifty
  258. onehundredandfiftyone
  259. onehundredandfiftytwo
  260. onehundredandfiftythree
  261. onehundredandfiftyfour
  262. onehundredandfiftyfive
  263. onehundredandfiftysix
  264. onehundredandfiftyseven
  265. onehundredandfiftyeight
  266. onehundredandfiftynine
  267. onehundredandsixty
  268. onehundredandsixtyone
  269. onehundredandsixtytwo
  270. onehundredandsixtythree
  271. onehundredandsixtyfour
  272. onehundredandsixtyfive
  273. onehundredandsixtysix
  274. onehundredandsixtyseven
  275. onehundredandsixtyeight
  276. onehundredandsixtynine
  277. onehundredandseventy
  278. onehundredandseventyone
  279. onehundredandseventytwo
  280. onehundredandseventythree
  281. onehundredandseventyfour
  282. onehundredandseventyfive
  283. onehundredandseventysix
  284. onehundredandseventyseven
  285. onehundredandseventyeight
  286. onehundredandseventynine
  287. onehundredandeighty
  288. onehundredandeightyone
  289. onehundredandeightytwo
  290. onehundredandeightythree
  291. onehundredandeightyfour
  292. onehundredandeightyfive
  293. onehundredandeightysix
  294. onehundredandeightyseven
  295. onehundredandeightyeight
  296. onehundredandeightynine
  297. onehundredandninety
  298. onehundredandninetyone
  299. onehundredandninetytwo
  300. onehundredandninetythree
  301. onehundredandninetyfour
  302. onehundredandninetyfive
  303. onehundredandninetysix
  304. onehundredandninetyseven
  305. onehundredandninetyeight
  306. onehundredandninetynine
  307. twohundred
  308. twohundredandone
  309. twohundredandtwo
  310. twohundredandthree
  311. twohundredandfour
  312. twohundredandfive
  313. twohundredandsix
  314. twohundredandseven
  315. twohundredandeight
  316. twohundredandnine
  317. twohundredandten
  318. twohundredandeleven
  319. twohundredandtwelve
  320. twohundredandthirteen
  321. twohundredandfourteen
  322. twohundredandfifteen
  323. twohundredandsixteen
  324. twohundredandseventeen
  325. twohundredandeighteen
  326. twohundredandnineteen
  327. twohundredandtwenty
  328. twohundredandtwentyone
  329. twohundredandtwentytwo
  330. twohundredandtwentythree
  331. twohundredandtwentyfour
  332. twohundredandtwentyfive
  333. twohundredandtwentysix
  334. twohundredandtwentyseven
  335. twohundredandtwentyeight
  336. twohundredandtwentynine
  337. twohundredandthirty
  338. twohundredandthirtyone
  339. twohundredandthirtytwo
  340. twohundredandthirtythree
  341. twohundredandthirtyfour
  342. twohundredandthirtyfive
  343. twohundredandthirtysix
  344. twohundredandthirtyseven
  345. twohundredandthirtyeight
  346. twohundredandthirtynine
  347. twohundredandfourty
  348. twohundredandfourtyone
  349. twohundredandfourtytwo
  350. twohundredandfourtythree
  351. twohundredandfourtyfour
  352. twohundredandfourtyfive
  353. twohundredandfourtysix
  354. twohundredandfourtyseven
  355. twohundredandfourtyeight
  356. twohundredandfourtynine
  357. twohundredandfifty
  358. twohundredandfiftyone
  359. twohundredandfiftytwo
  360. twohundredandfiftythree
  361. twohundredandfiftyfour
  362. twohundredandfiftyfive
  363. twohundredandfiftysix
  364. twohundredandfiftyseven
  365. twohundredandfiftyeight
  366. twohundredandfiftynine
  367. twohundredandsixty
  368. twohundredandsixtyone
  369. twohundredandsixtytwo
  370. twohundredandsixtythree
  371. twohundredandsixtyfour
  372. twohundredandsixtyfive
  373. twohundredandsixtysix
  374. twohundredandsixtyseven
  375. twohundredandsixtyeight
  376. twohundredandsixtynine
  377. twohundredandseventy
  378. twohundredandseventyone
  379. twohundredandseventytwo
  380. twohundredandseventythree
  381. twohundredandseventyfour
  382. twohundredandseventyfive
  383. twohundredandseventysix
  384. twohundredandseventyseven
  385. twohundredandseventyeight
  386. twohundredandseventynine
  387. twohundredandeighty
  388. twohundredandeightyone
  389. twohundredandeightytwo
  390. twohundredandeightythree
  391. twohundredandeightyfour
  392. twohundredandeightyfive
  393. twohundredandeightysix
  394. twohundredandeightyseven
  395. twohundredandeightyeight
  396. twohundredandeightynine
  397. twohundredandninety
  398. twohundredandninetyone
  399. twohundredandninetytwo
  400. twohundredandninetythree
  401. twohundredandninetyfour
  402. twohundredandninetyfive
  403. twohundredandninetysix
  404. twohundredandninetyseven
  405. twohundredandninetyeight
  406. twohundredandninetynine
  407. threehundred
  408. threehundredandone
  409. threehundredandtwo
  410. threehundredandthree
  411. threehundredandfour
  412. threehundredandfive
  413. threehundredandsix
  414. threehundredandseven
  415. threehundredandeight
  416. threehundredandnine
  417. threehundredandten
  418. threehundredandeleven
  419. threehundredandtwelve
  420. threehundredandthirteen
  421. threehundredandfourteen
  422. threehundredandfifteen
  423. threehundredandsixteen
  424. threehundredandseventeen
  425. threehundredandeighteen
  426. threehundredandnineteen
  427. threehundredandtwenty
  428. threehundredandtwentyone
  429. threehundredandtwentytwo
  430. threehundredandtwentythree
  431. threehundredandtwentyfour
  432. threehundredandtwentyfive
  433. threehundredandtwentysix
  434. threehundredandtwentyseven
  435. threehundredandtwentyeight
  436. threehundredandtwentynine
  437. threehundredandthirty
  438. threehundredandthirtyone
  439. threehundredandthirtytwo
  440. threehundredandthirtythree
  441. threehundredandthirtyfour
  442. threehundredandthirtyfive
  443. threehundredandthirtysix
  444. threehundredandthirtyseven
  445. threehundredandthirtyeight
  446. threehundredandthirtynine
  447. threehundredandfourty
  448. threehundredandfourtyone
  449. threehundredandfourtytwo
  450. threehundredandfourtythree
  451. threehundredandfourtyfour
  452. threehundredandfourtyfive
  453. threehundredandfourtysix
  454. threehundredandfourtyseven
  455. threehundredandfourtyeight
  456. threehundredandfourtynine
  457. threehundredandfifty
  458. threehundredandfiftyone
  459. threehundredandfiftytwo
  460. threehundredandfiftythree
  461. threehundredandfiftyfour
  462. threehundredandfiftyfive
  463. threehundredandfiftysix
  464. threehundredandfiftyseven
  465. threehundredandfiftyeight
  466. threehundredandfiftynine
  467. threehundredandsixty
  468. threehundredandsixtyone
  469. threehundredandsixtytwo
  470. threehundredandsixtythree
  471. threehundredandsixtyfour
  472. threehundredandsixtyfive
  473. threehundredandsixtysix
  474. threehundredandsixtyseven
  475. threehundredandsixtyeight
  476. threehundredandsixtynine
  477. threehundredandseventy
  478. threehundredandseventyone
  479. threehundredandseventytwo
  480. threehundredandseventythree
  481. threehundredandseventyfour
  482. threehundredandseventyfive
  483. threehundredandseventysix
  484. threehundredandseventyseven
  485. threehundredandseventyeight
  486. threehundredandseventynine
  487. threehundredandeighty
  488. threehundredandeightyone
  489. threehundredandeightytwo
  490. threehundredandeightythree
  491. threehundredandeightyfour
  492. threehundredandeightyfive
  493. threehundredandeightysix
  494. threehundredandeightyseven
  495. threehundredandeightyeight
  496. threehundredandeightynine
  497. threehundredandninety
  498. threehundredandninetyone
  499. threehundredandninetytwo
  500. threehundredandninetythree
  501. threehundredandninetyfour
  502. threehundredandninetyfive
  503. threehundredandninetysix
  504. threehundredandninetyseven
  505. threehundredandninetyeight
  506. threehundredandninetynine
  507. fourhundred
  508. fourhundredandone
  509. fourhundredandtwo
  510. fourhundredandthree
  511. fourhundredandfour
  512. fourhundredandfive
  513. fourhundredandsix
  514. fourhundredandseven
  515. fourhundredandeight
  516. fourhundredandnine
  517. fourhundredandten
  518. fourhundredandeleven
  519. fourhundredandtwelve
  520. fourhundredandthirteen
  521. fourhundredandfourteen
  522. fourhundredandfifteen
  523. fourhundredandsixteen
  524. fourhundredandseventeen
  525. fourhundredandeighteen
  526. fourhundredandnineteen
  527. fourhundredandtwenty
  528. fourhundredandtwentyone
  529. fourhundredandtwentytwo
  530. fourhundredandtwentythree
  531. fourhundredandtwentyfour
  532. fourhundredandtwentyfive
  533. fourhundredandtwentysix
  534. fourhundredandtwentyseven
  535. fourhundredandtwentyeight
  536. fourhundredandtwentynine
  537. fourhundredandthirty
  538. fourhundredandthirtyone
  539. fourhundredandthirtytwo
  540. fourhundredandthirtythree
  541. fourhundredandthirtyfour
  542. fourhundredandthirtyfive
  543. fourhundredandthirtysix
  544. fourhundredandthirtyseven
  545. fourhundredandthirtyeight
  546. fourhundredandthirtynine
  547. fourhundredandfourty
  548. fourhundredandfourtyone
  549. fourhundredandfourtytwo
  550. fourhundredandfourtythree
  551. fourhundredandfourtyfour
  552. fourhundredandfourtyfive
  553. fourhundredandfourtysix
  554. fourhundredandfourtyseven
  555. fourhundredandfourtyeight
  556. fourhundredandfourtynine
  557. fourhundredandfifty
  558. fourhundredandfiftyone
  559. fourhundredandfiftytwo
  560. fourhundredandfiftythree
  561. fourhundredandfiftyfour
  562. fourhundredandfiftyfive
  563. fourhundredandfiftysix
  564. fourhundredandfiftyseven
  565. fourhundredandfiftyeight
  566. fourhundredandfiftynine
  567. fourhundredandsixty
  568. fourhundredandsixtyone
  569. fourhundredandsixtytwo
  570. fourhundredandsixtythree
  571. fourhundredandsixtyfour
  572. fourhundredandsixtyfive
  573. fourhundredandsixtysix
  574. fourhundredandsixtyseven
  575. fourhundredandsixtyeight
  576. fourhundredandsixtynine
  577. fourhundredandseventy
  578. fourhundredandseventyone
  579. fourhundredandseventytwo
  580. fourhundredandseventythree
  581. fourhundredandseventyfour
  582. fourhundredandseventyfive
  583. fourhundredandseventysix
  584. fourhundredandseventyseven
  585. fourhundredandseventyeight
  586. fourhundredandseventynine
  587. fourhundredandeighty
  588. fourhundredandeightyone
  589. fourhundredandeightytwo
  590. fourhundredandeightythree
  591. fourhundredandeightyfour
  592. fourhundredandeightyfive
  593. fourhundredandeightysix
  594. fourhundredandeightyseven
  595. fourhundredandeightyeight
  596. fourhundredandeightynine
  597. fourhundredandninety
  598. fourhundredandninetyone
  599. fourhundredandninetytwo
  600. fourhundredandninetythree
  601. fourhundredandninetyfour
  602. fourhundredandninetyfive
  603. fourhundredandninetysix
  604. fourhundredandninetyseven
  605. fourhundredandninetyeight
  606. fourhundredandninetynine
  607. fivehundred
  608. fivehundredandone
  609. fivehundredandtwo
  610. fivehundredandthree
  611. fivehundredandfour
  612. fivehundredandfive
  613. fivehundredandsix
  614. fivehundredandseven
  615. fivehundredandeight
  616. fivehundredandnine
  617. fivehundredandten
  618. fivehundredandeleven
  619. fivehundredandtwelve
  620. fivehundredandthirteen
  621. fivehundredandfourteen
  622. fivehundredandfifteen
  623. fivehundredandsixteen
  624. fivehundredandseventeen
  625. fivehundredandeighteen
  626. fivehundredandnineteen
  627. fivehundredandtwenty
  628. fivehundredandtwentyone
  629. fivehundredandtwentytwo
  630. fivehundredandtwentythree
  631. fivehundredandtwentyfour
  632. fivehundredandtwentyfive
  633. fivehundredandtwentysix
  634. fivehundredandtwentyseven
  635. fivehundredandtwentyeight
  636. fivehundredandtwentynine
  637. fivehundredandthirty
  638. fivehundredandthirtyone
  639. fivehundredandthirtytwo
  640. fivehundredandthirtythree
  641. fivehundredandthirtyfour
  642. fivehundredandthirtyfive
  643. fivehundredandthirtysix
  644. fivehundredandthirtyseven
  645. fivehundredandthirtyeight
  646. fivehundredandthirtynine
  647. fivehundredandfourty
  648. fivehundredandfourtyone
  649. fivehundredandfourtytwo
  650. fivehundredandfourtythree
  651. fivehundredandfourtyfour
  652. fivehundredandfourtyfive
  653. fivehundredandfourtysix
  654. fivehundredandfourtyseven
  655. fivehundredandfourtyeight
  656. fivehundredandfourtynine
  657. fivehundredandfifty
  658. fivehundredandfiftyone
  659. fivehundredandfiftytwo
  660. fivehundredandfiftythree
  661. fivehundredandfiftyfour
  662. fivehundredandfiftyfive
  663. fivehundredandfiftysix
  664. fivehundredandfiftyseven
  665. fivehundredandfiftyeight
  666. fivehundredandfiftynine
  667. fivehundredandsixty
  668. fivehundredandsixtyone
  669. fivehundredandsixtytwo
  670. fivehundredandsixtythree
  671. fivehundredandsixtyfour
  672. fivehundredandsixtyfive
  673. fivehundredandsixtysix
  674. fivehundredandsixtyseven
  675. fivehundredandsixtyeight
  676. fivehundredandsixtynine
  677. fivehundredandseventy
  678. fivehundredandseventyone
  679. fivehundredandseventytwo
  680. fivehundredandseventythree
  681. fivehundredandseventyfour
  682. fivehundredandseventyfive
  683. fivehundredandseventysix
  684. fivehundredandseventyseven
  685. fivehundredandseventyeight
  686. fivehundredandseventynine
  687. fivehundredandeighty
  688. fivehundredandeightyone
  689. fivehundredandeightytwo
  690. fivehundredandeightythree
  691. fivehundredandeightyfour
  692. fivehundredandeightyfive
  693. fivehundredandeightysix
  694. fivehundredandeightyseven
  695. fivehundredandeightyeight
  696. fivehundredandeightynine
  697. fivehundredandninety
  698. fivehundredandninetyone
  699. fivehundredandninetytwo
  700. fivehundredandninetythree
  701. fivehundredandninetyfour
  702. fivehundredandninetyfive
  703. fivehundredandninetysix
  704. fivehundredandninetyseven
  705. fivehundredandninetyeight
  706. fivehundredandninetynine
  707. sixhundred
  708. .....
  709. ninehundredandninetyseven
  710. ninehundredandninetyeight
  711. ninehundredandninetynine
  712. onethousand
  713.  
  714. def teen(n):
  715. n = int(n)
  716. if n//10 == 1:
  717. return ["ten","eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen","eighteen","nineteen"][n-10]
  718. else:
  719. return ""
  720.  
  721. def placement(n,p):
  722. n = int(n)
  723. if n < 1:
  724. return ""
  725. if p == 1:
  726. return ["one","two","three","four","five","six","seven","eight","nine"][n-1]
  727. if p == 2:
  728. return ["ten","twenty","thirty","forty","fifty","sixty","seventy","eighty","ninety"][n-1]
  729. if p == 3:
  730. return placement(n,1) + "hundred"
  731. if p == 4:
  732. return placement(n,1) + "thousand"
  733.  
  734. def convert(n):
  735. if n < 10:
  736. return placement(n,1)
  737. if n < 20:
  738. return teen(n)
  739. if n < 100:
Add Comment
Please, Sign In to add comment