The Forum > Technology > Rube Goldberg Programs
Page: 1 2
Something I thought would be fun. I believe you know what this is: turning an easy command into something complex. First, list the command you want to do. Then, post the code for it to do that. Here's my example: a+b=? a=int(input("a")) b=int(input("b")) for c in range(1, b+1): a=a+1 print(a) Ok, so that wasn't very good. But I think you get what I mean. |
Page: 1 2
The Forum > Technology > Rube Goldberg Programs
