Kappa⁴ Archive

banned-users

Phi Kappa Chi ΦΚΧ <a:yeah:589703000977571860><a:ppHop:536353159615086612>

Jump to date
Pins
Phijkchu_Pikachu banned-users
# a first Python assignment # for each of the eight questions below, use the format print "xxx" to print the answer # add the print statement to this file by inserting a line after the question # (don't start the line with # or nothing will print!) # # # 1) what is your name/nickname/alias # (I actually don’t need this, so feel free to make something up if you have privacy concerns) # # 2) what is your year? # # 3) what is your major? # # 4) why you are taking this course? (1 for want to; 0 for have to) # # 5) do you have any programming experience? (yes/sort of/no) # # 6) what language(s) have you programmed in? # # 7) what is the longest program you have written? # # 8) which do you prefer, pencil and paper or computational calculations? #
legorhin banned-users
i was going to write a dumb python script that prints text but converts all the letters to 🇹 🇭 🇮 🇸 but python is dumb for some reason and can't handle characters that big
legorhin banned-users
def Print(string):
  specialed = u""
  for c in string:
    if c.isalpha():
      specialed += unichr(1)
      if c.isupper():
        specialed += unichr(ord(c) - 65 + 61927)
      elif c.islower():
        specialed += unichr(ord(c) - 97 + 61927)
    else:
      specialed += c
  print specialed

Print("Hello World")

This archive is read-only — captured July 2020

Channels:
Density:

Jump to date