• 第二章:25+ Python 数据操作教程(第二十五节用 PYTHON 和 R 制作祝福圣诞节)持续更新


    这篇文章献给所有 Python 和 R 编程爱好者...通过以下程序在同行中炫耀您的知识。作为一名数据科学专业人士,您希望自己的愿望在圣诞节前夕变得特别。如果您观察代码,您还可以学到 1-2 个技巧,您可以在以后的日常任务中使用这些技巧。

    方法 1:运行以下程序,看看我的意思

    • R代码
      1. paste(intToUtf8(acos(log(1))*180/pi-13),
      2. toupper(substr(month.name[2],2,2)),
      3. paste(rep(intToUtf8(acos(exp(0)/2)*180/pi+2^4+3*2),2), collapse = intToUtf8(0)),
      4. LETTERS[5^(3-1)], intToUtf8(atan(1/sqrt(3))*180/pi+2),
      5. toupper(substr(month.abb[10],2,2)),
      6. intToUtf8(acos(log(1))*180/pi-(2*3^2)),
      7. toupper(substr(month.name[4],3,4)),
      8. intToUtf8(acos(exp(0)/2)*180/pi+2^4+3*2+1),
      9. intToUtf8(acos(exp(0)/2)*180/pi+2^4+2*4),
      10. intToUtf8(acos(log(1))*180/pi-13),
      11. LETTERS[median(0:2)],
      12. intToUtf8(atan(1/sqrt(3))*180/pi*3-7),
      13. sep = intToUtf8(0)
      14. )
    • PYTHON代码
      1. import math
      2. import datetime
      3. (chr(int(math.acos(math.log(1))*180/math.pi-13)) \
      4. + datetime.date(1900, 2, 1).strftime('%B')[1] \
      5. + 2 * datetime.date(1900, 2, 1).strftime('%B')[3] \
      6. + datetime.date(1900, 2, 1).strftime('%B')[7] \
      7. + chr(int(math.atan(1/math.sqrt(3))*180/math.pi+2)) \
      8. + datetime.date(1900, 10, 1).strftime('%B')[1] \
      9. + chr(int(math.acos(math.log(1))*180/math.pi-18)) \
      10. + datetime.date(1900, 4, 1).strftime('%B')[2:4] \
      11. + chr(int(math.acos(math.exp(0)/2)*180/math.pi+2**4+3*2+1)) \
      12. + chr(int(math.acos(math.exp(0)/2)*180/math.pi+2**4+2*4)) \
      13. + chr(int(math.acos(math.log(1))*180/math.pi-13)) \
      14. + "{:c}".format(97) \
      15. + chr(int(math.atan(1/math.sqrt(3))*180/math.pi*3-7))).upper()

      方法 2:圣诞节的音频愿望

      在运行代码之前打开计算机扬声器。

    • R代码
      1. install.packages("audio")
      2. library(audio)
      3. christmas_file <- tempfile()
      4. download.file("https://github.com/deepanshu88/Datasets/raw/master/UploadedFiles/merrychristmas1.wav", christmas_file, mode = "wb")
      5. xmas <- load.wave(christmas_file)
      6. play(xmas)
    • PYTHON代码
      1. #Install packages
      2. !pip install requests
      3. !pip install playsound
      4. import requests
      5. from playsound import playsound
      6. audio_url = "https://github.com/deepanshu88/Datasets/raw/master/UploadedFiles/merrychristmas1.wav"
      7. r = requests.get(audio_url)
      8. with open("christmas.wav",'wb') as f:
      9. f.write(r.content)
      10. playsound('christmas.wav')

      在运行上述代码之前,请确保已安装requests软件包。playsound如果您收到“权限被拒绝”错误,请确保您的工作目录设置为具有写入权限。使用此代码设置工作目录。os.chdir()

  • 相关阅读:
    MTK联发科、高通、紫光展锐手机SOC平台型号汇总(含详细参数)
    SpringMVC基于注解使用:异常处理
    如何在会计面试中展现自己的优势?
    java基于Springboot+Vue的校园兼职平台大学生求职招聘系统 elementui前后端分离
    运算符+分支+循环语句
    Java性能优化-书写高质量SQL的建议(如何做Mysql优化)
    iOS 16 SwiftUI 4.0 列表(List)项分隔线变短的原因及解决
    大数据讲课笔记1.2 Linux用户操作
    Spring Security OAuth2基于JWT认证授权
    企业文件加密软件!哪个好用?
  • 原文地址:https://blog.csdn.net/wly476923083/article/details/133016138