Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "code",
  5. "execution_count": 1,
  6. "metadata": {},
  7. "outputs": [
  8. {
  9. "data": {
  10. "text/plain": [
  11. "{'00:42:19',\n",
  12. " 10.0,\n",
  13. " 1982,\n",
  14. " '30-Nov-82',\n",
  15. " 46.0,\n",
  16. " 65,\n",
  17. " 'Michael Jackson',\n",
  18. " None,\n",
  19. " 'Pop, Rock, R&B',\n",
  20. " 'Thriller'}"
  21. ]
  22. },
  23. "execution_count": 1,
  24. "metadata": {},
  25. "output_type": "execute_result"
  26. }
  27. ],
  28. "source": [
  29. "album_list = [ \"Michael Jackson\", \"Thriller\", 1982, \"00:42:19\", \\\n",
  30. " \"Pop, Rock, R&B\", 46.0, 65, \"30-Nov-82\", None, 10.0]\n",
  31. "album_set=set(album_list)\n",
  32. "album_set"
  33. ]
  34. },
  35. {
  36. "cell_type": "code",
  37. "execution_count": null,
  38. "metadata": {},
  39. "outputs": [],
  40. "source": []
  41. }
  42. ],
  43. "metadata": {
  44. "kernelspec": {
  45. "display_name": "Python 3",
  46. "language": "python",
  47. "name": "python3"
  48. },
  49. "language_info": {
  50. "codemirror_mode": {
  51. "name": "ipython",
  52. "version": 3
  53. },
  54. "file_extension": ".py",
  55. "mimetype": "text/x-python",
  56. "name": "python",
  57. "nbconvert_exporter": "python",
  58. "pygments_lexer": "ipython3",
  59. "version": "3.6.8"
  60. }
  61. },
  62. "nbformat": 4,
  63. "nbformat_minor": 2
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement