Last login: Fri Jan 23 08:47:08 on ttys000 odd% ipython Python 2.7.6 (default, Sep 9 2014, 15:04:36) Type "copyright", "credits" or "license" for more information. IPython 2.0.0 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object', use 'object??' for extra details. In [1]: for i in xrange(10): ...: print i ...: 0 1 2 3 4 5 6 7 8 9 In [2]: for i in xrange(10): if i==6 : break ...: print i ...: 0 1 2 3 4 5 In [3]: for i in xrange(10): if i==6 : continue print i ...: 0 1 2 3 4 5 7 8 9 In [4]: for i in xrange(10): print i ...: if i==6: continue ...: print i ...: 0 0 1 1 2 2 3 3 4 4 5 5 6 7 7 8 8 9 9 In [5]: while True: ...: KeyboardInterrupt In [5]: i=0 In [6]: while True: ...: if i==5 : break ...: print i ...: i+=1 ...: 0 1 2 3 4 In [7]: for i in xrange(10): ...: if i==12 : break ...: print i ...: else: print "done" ...: 0 1 2 3 4 5 6 7 8 9 done In [8]: for i in xrange(10): if i==6 : break print i else: print "done" ...: 0 1 2 3 4 5 In [9]: for i in xrange(10): if i==6 : continue print i else: print "done" ...: 0 1 2 3 4 5 7 8 9 done In [10]: for i in xrange(10): if i==6 : print i ....: KeyboardInterrupt In [10]: for i in xrange(10): ....: KeyboardInterrupt In [10]: failed=False In [11]: for i in xrange(10): ....: if i==6: ....: failed=True ....: break ....: print i ....: 0 1 2 3 4 5 In [12]: print failed True In [13]: from math import sin In [14]: sin(.5) Out[14]: 0.479425538604203 In [15]: cos(.5) --------------------------------------------------------------------------- NameError Traceback (most recent call last) in () ----> 1 cos(.5) NameError: name 'cos' is not defined In [16]: math.cos(.5) --------------------------------------------------------------------------- NameError Traceback (most recent call last) in () ----> 1 math.cos(.5) NameError: name 'math' is not defined In [17]: import math In [18]: math.cos(.5) Out[18]: 0.8775825618903728 In [19]: sin(.5) Out[19]: 0.479425538604203 In [20]: from math import * In [21]: import math as m In [22]: m.sin(.5) Out[22]: 0.479425538604203 In [23]: import sys In [24]: help(sys) In [25]: import sys In [26]: sys.stdin Out[26]: ', mode 'r' at 0x1021ce0c0> In [27]: sys.stdout Out[27]: ', mode 'w' at 0x1021ce150> In [28]: sys.stdout.write("\n\nhi there\n\n") hi there In [29]: a=sys.stdin.readline() hi there In [30]: a Out[30]: 'hi there\n' In [31]: a=sys.stdin.read(25) this is a really long line of text, more than 25 characters In [32]: a Out[32]: 'this is a really long lin' In [33]: help(sys) In [34]: import os In [35]: os.getcwd() Out[35]: '/Users/stevel' In [36]: os.getlogin() Out[36]: 'stevel' In [37]: Do you really want to exit ([y]/n)? odd% ls 111_IP3R.mrc cd proc3d.raddist 1f88.ent chimera_movie.mov projs.hdf 2008_02_19_irina_collab.pdf chimera_movie.mp4 r_07_04.hdf 2VZ8.pdb chimera_movie2.mp4 r_09_04.hdf AnimeStudio classes.png r_10_04.hdf Applications ctf.fg1d.ps r_16_02.hdf CV_NIH_2008_02_19.pdf ctfparm.txt r_16_02.jpg DVDTemp d r_16_02f.hdf Desktop data r_35_02.hdf Documents data.csv refine.log Downloads data.txt result.txt Dropbox db s2 Dropbox (NCMI) dot.hdf scripps.pdf Dropbox (Personal) dot2.hdf session9.txt EMAN dynamics.ppt share EMAN2 eclipse snapshot1.png EMAN2.odp efs std.ics EMAN2.ppt emdb test EMAN2DB error.txt test.html Image Data Converter SR filtertool_default.txt test.mov ImageMagick-6.4.0 good_top_avg.hdf test.py Java.disable good_top_avg_r.gif test.txt Library good_top_avg_r.hdf test1.mp4 Manga_Studio_SampleData groel-c7.mrc test2.py Movies groel.12A.mrc test2.pyc Music groel.12A.pub.mrc test2.txt Pictures groel.published.12.mrc testdb PoserDebut groel.xray.12A.mrc threed_03.hdf Public id tmp QtSDK installed tomotrackbox.py Reference2.pdf ip3r-binding.py tst.hdf Sites lib tst.txt StrucFact.sm mail video.mpg UCLA.pdf me.jpg wp VirtualBox VMs me.psd x a.pdb mmcpn.py x.c aacmsched.pdf mmcpn.side.gif x.pkl aacmsched2.pdf mmcpn.top.gif x.py abstract.doc p1.txt x.txt bin p2.txt y.py bioshocksave.tgz pdb z.html burn pro z.py cam.html proc3d.filt odd% cat x.py print 1, print 2, print 3, print "" odd% python Python 2.7.6 (default, Sep 9 2014, 15:04:36) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> os.rename("x.py","xyz.py") >>> odd% ls 111_IP3R.mrc cd proc3d.raddist 1f88.ent chimera_movie.mov projs.hdf 2008_02_19_irina_collab.pdf chimera_movie.mp4 r_07_04.hdf 2VZ8.pdb chimera_movie2.mp4 r_09_04.hdf AnimeStudio classes.png r_10_04.hdf Applications ctf.fg1d.ps r_16_02.hdf CV_NIH_2008_02_19.pdf ctfparm.txt r_16_02.jpg DVDTemp d r_16_02f.hdf Desktop data r_35_02.hdf Documents data.csv refine.log Downloads data.txt result.txt Dropbox db s2 Dropbox (NCMI) dot.hdf scripps.pdf Dropbox (Personal) dot2.hdf session9.txt EMAN dynamics.ppt share EMAN2 eclipse snapshot1.png EMAN2.odp efs std.ics EMAN2.ppt emdb test EMAN2DB error.txt test.html Image Data Converter SR filtertool_default.txt test.mov ImageMagick-6.4.0 good_top_avg.hdf test.py Java.disable good_top_avg_r.gif test.txt Library good_top_avg_r.hdf test1.mp4 Manga_Studio_SampleData groel-c7.mrc test2.py Movies groel.12A.mrc test2.pyc Music groel.12A.pub.mrc test2.txt Pictures groel.published.12.mrc testdb PoserDebut groel.xray.12A.mrc threed_03.hdf Public id tmp QtSDK installed tomotrackbox.py Reference2.pdf ip3r-binding.py tst.hdf Sites lib tst.txt StrucFact.sm mail video.mpg UCLA.pdf me.jpg wp VirtualBox VMs me.psd x a.pdb mmcpn.py x.c aacmsched.pdf mmcpn.side.gif x.pkl aacmsched2.pdf mmcpn.top.gif x.txt abstract.doc p1.txt xyz.py bin p2.txt y.py bioshocksave.tgz pdb z.html burn pro z.py cam.html proc3d.filt odd% cat xyz.py print 1, print 2, print 3, print "" odd% python Python 2.7.6 (default, Sep 9 2014, 15:04:36) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> os.unlink("xyz.py") >>> odd% ls 111_IP3R.mrc cd proc3d.raddist 1f88.ent chimera_movie.mov projs.hdf 2008_02_19_irina_collab.pdf chimera_movie.mp4 r_07_04.hdf 2VZ8.pdb chimera_movie2.mp4 r_09_04.hdf AnimeStudio classes.png r_10_04.hdf Applications ctf.fg1d.ps r_16_02.hdf CV_NIH_2008_02_19.pdf ctfparm.txt r_16_02.jpg DVDTemp d r_16_02f.hdf Desktop data r_35_02.hdf Documents data.csv refine.log Downloads data.txt result.txt Dropbox db s2 Dropbox (NCMI) dot.hdf scripps.pdf Dropbox (Personal) dot2.hdf session9.txt EMAN dynamics.ppt share EMAN2 eclipse snapshot1.png EMAN2.odp efs std.ics EMAN2.ppt emdb test EMAN2DB error.txt test.html Image Data Converter SR filtertool_default.txt test.mov ImageMagick-6.4.0 good_top_avg.hdf test.py Java.disable good_top_avg_r.gif test.txt Library good_top_avg_r.hdf test1.mp4 Manga_Studio_SampleData groel-c7.mrc test2.py Movies groel.12A.mrc test2.pyc Music groel.12A.pub.mrc test2.txt Pictures groel.published.12.mrc testdb PoserDebut groel.xray.12A.mrc threed_03.hdf Public id tmp QtSDK installed tomotrackbox.py Reference2.pdf ip3r-binding.py tst.hdf Sites lib tst.txt StrucFact.sm mail video.mpg UCLA.pdf me.jpg wp VirtualBox VMs me.psd x a.pdb mmcpn.py x.c aacmsched.pdf mmcpn.side.gif x.pkl aacmsched2.pdf mmcpn.top.gif x.txt abstract.doc p1.txt y.py bin p2.txt z.html bioshocksave.tgz pdb z.py burn pro cam.html proc3d.filt odd% python Python 2.7.6 (default, Sep 9 2014, 15:04:36) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> os.listdir(".") ['.adobe', '.anyconnect', '.bash_history', '.bashrc', '.browsercache.json', '.cache', '.CFUserTextEncoding', '.chimera', '.config', '.cups', '.cvspass', '.designer', '.dropbox', '.DS_Store', '.dvdcss', '.eclipse', '.eman', '.eman2', '.eman2dir', '.eman2log.db', '.eman2log.txt', '.eman2settings.db', '.emanlog', '.ENV_PYDEBUG', '.fontconfig', '.gconf', '.gconfd', '.gdb_history', '.gimp-2.4', '.gmic_sources.cimgz', '.gnome2', '.gnupg', '.idlerc', '.InstallAnywhere', '.ipython', '.jnlp-applet', '.lesshst', '.local', '.MacOSX', '.macports', '.matplotlib', '.mplayer', '.nx', '.org.eclipse.epp.usagedata.recording.userId', '.parallels', '.parallels_settings', '.profile', '.profile.mpsaved', '.python-eggs', '.qgis', '.qt', '.recently-used.xbel', '.rnd', '.serverauth.211', '.serverauth.343', '.serverauth.40738', '.serverauth.442', '.serverauth.6886', '.serverauth.828', '.sh_history', '.spumux', '.sqlite_history', '.ssh', '.subversion', '.thumbnails', '.tkcvs', '.tkcvs-picklists', '.tkcvs.bak', '.Trash', '.viminfo', '.wapi', '.wireshark', '.wireshark-etc', '.Xauthority', '.Xcode', '.zshenv', '.zshrc', '111_IP3R.mrc', '1f88.ent', '2008_02_19_irina_collab.pdf', '2VZ8.pdb', 'a.pdb', 'aacmsched.pdf', 'aacmsched2.pdf', 'abstract.doc', 'AnimeStudio', 'Applications', 'bin', 'bioshocksave.tgz', 'burn', 'cam.html', 'cd', 'chimera_movie.mov', 'chimera_movie.mp4', 'chimera_movie2.mp4', 'classes.png', 'ctf.fg1d.ps', 'ctfparm.txt', 'CV_NIH_2008_02_19.pdf', 'd', 'data', 'data.csv', 'data.txt', 'db', 'Desktop', 'Documents', 'dot.hdf', 'dot2.hdf', 'Downloads', 'Dropbox', 'Dropbox (NCMI)', 'Dropbox (Personal)', 'DVDTemp', 'dynamics.ppt', 'eclipse', 'efs', 'EMAN', 'EMAN2', 'EMAN2.odp', 'EMAN2.ppt', 'EMAN2DB', 'emdb', 'error.txt', 'filtertool_default.txt', 'good_top_avg.hdf', 'good_top_avg_r.gif', 'good_top_avg_r.hdf', 'groel-c7.mrc', 'groel.12A.mrc', 'groel.12A.pub.mrc', 'groel.published.12.mrc', 'groel.xray.12A.mrc', 'id', 'Image Data Converter SR', 'ImageMagick-6.4.0', 'installed', 'ip3r-binding.py', 'Java.disable', 'lib', 'Library', 'mail', 'Manga_Studio_SampleData', 'me.jpg', 'me.psd', 'mmcpn.py', 'mmcpn.side.gif', 'mmcpn.top.gif', 'Movies', 'Music', 'p1.txt', 'p2.txt', 'pdb', 'Pictures', 'PoserDebut', 'pro', 'proc3d.filt', 'proc3d.raddist', 'projs.hdf', 'Public', 'QtSDK', 'r_07_04.hdf', 'r_09_04.hdf', 'r_10_04.hdf', 'r_16_02.hdf', 'r_16_02.jpg', 'r_16_02f.hdf', 'r_35_02.hdf', 'Reference2.pdf', 'refine.log', 'result.txt', 's2', 'scripps.pdf', 'session9.txt', 'share', 'Sites', 'snapshot1.png', 'std.ics', 'StrucFact.sm', 'test', 'test.html', 'test.mov', 'test.py', 'test.txt', 'test1.mp4', 'test2.py', 'test2.pyc', 'test2.txt', 'testdb', 'threed_03.hdf', 'tmp', 'tomotrackbox.py', 'tst.hdf', 'tst.txt', 'UCLA.pdf', 'video.mpg', 'VirtualBox VMs', 'wp', 'x', 'x.c', 'x.pkl', 'x.txt', 'y.py', 'z.html', 'z.py'] >>> os.listdir("/") ['.com.apple.backupd.mvlist.plist', '.dbfseventsd', '.DocumentRevisions-V100', '.DocumentRevisions-V100 (from old Mac)', '.DS_Store', '.file', '.fseventsd', '.MobileBackups', '.OSInstallerMessages', '.PKInstallSandboxManager', '.PKInstallSandboxManager (from old Mac)', '.Spotlight-V100', '.Trashes', '.vol', 'Applications', 'bin', 'cores', 'dev', 'Developer', 'Developer-old', 'etc', 'home', 'Incompatible Software', 'Installer Log File', 'installer.failurerequests', 'Library', 'net', 'Network', 'opt', 'private', 'sbin', 'System', 'tmp', 'User Information', 'Users', 'usr', 'var', 'Volumes', '~'] >>> os.system("ls") 111_IP3R.mrc cd proc3d.raddist 1f88.ent chimera_movie.mov projs.hdf 2008_02_19_irina_collab.pdf chimera_movie.mp4 r_07_04.hdf 2VZ8.pdb chimera_movie2.mp4 r_09_04.hdf AnimeStudio classes.png r_10_04.hdf Applications ctf.fg1d.ps r_16_02.hdf CV_NIH_2008_02_19.pdf ctfparm.txt r_16_02.jpg DVDTemp d r_16_02f.hdf Desktop data r_35_02.hdf Documents data.csv refine.log Downloads data.txt result.txt Dropbox db s2 Dropbox (NCMI) dot.hdf scripps.pdf Dropbox (Personal) dot2.hdf session9.txt EMAN dynamics.ppt share EMAN2 eclipse snapshot1.png EMAN2.odp efs std.ics EMAN2.ppt emdb test EMAN2DB error.txt test.html Image Data Converter SR filtertool_default.txt test.mov ImageMagick-6.4.0 good_top_avg.hdf test.py Java.disable good_top_avg_r.gif test.txt Library good_top_avg_r.hdf test1.mp4 Manga_Studio_SampleData groel-c7.mrc test2.py Movies groel.12A.mrc test2.pyc Music groel.12A.pub.mrc test2.txt Pictures groel.published.12.mrc testdb PoserDebut groel.xray.12A.mrc threed_03.hdf Public id tmp QtSDK installed tomotrackbox.py Reference2.pdf ip3r-binding.py tst.hdf Sites lib tst.txt StrucFact.sm mail video.mpg UCLA.pdf me.jpg wp VirtualBox VMs me.psd x a.pdb mmcpn.py x.c aacmsched.pdf mmcpn.side.gif x.pkl aacmsched2.pdf mmcpn.top.gif x.txt abstract.doc p1.txt y.py bin p2.txt z.html bioshocksave.tgz pdb z.py burn pro cam.html proc3d.filt 0 >>> >>> os.system("rm xyz.py") rm: xyz.py: No such file or directory 256 >>> a="abc" >>> a.upper() 'ABC' >>> import string >>> help(string) >>> import time >>> time.sleep(5) >>> time.sleep(.01) >>> time.time() 1422028261.334861 >>> time.ctime() 'Fri Jan 23 09:52:01 2015' >>> time.ctime(1422000000) 'Fri Jan 23 02:00:00 2015' >>> time.localtime() time.struct_time(tm_year=2015, tm_mon=1, tm_mday=23, tm_hour=9, tm_min=53, tm_sec=7, tm_wday=4, tm_yday=23, tm_isdst=0) >>> time.localtime()[3] 9 >>> time.localtime()[4] 53 >>> time.localtime().tm_hour 9 >>> time.gmtime().tm_hour 15 >>> from pprint import pprint >>> a=range(35) >>> a [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34] >>> print a [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34] >>> pprint(a) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34] >>> pprint(range(5)) [0, 1, 2, 3, 4] >>> a=[range(4) for i in range(4)] >>> a [[0, 1, 2, 3], [0, 1, 2, 3], [0, 1, 2, 3], [0, 1, 2, 3]] >>> print a [[0, 1, 2, 3], [0, 1, 2, 3], [0, 1, 2, 3], [0, 1, 2, 3]] >>> pprint(a) [[0, 1, 2, 3], [0, 1, 2, 3], [0, 1, 2, 3], [0, 1, 2, 3]] >>> a=[range(8) for i in range(8)] >>> pprint(a) [[0, 1, 2, 3, 4, 5, 6, 7], [0, 1, 2, 3, 4, 5, 6, 7], [0, 1, 2, 3, 4, 5, 6, 7], [0, 1, 2, 3, 4, 5, 6, 7], [0, 1, 2, 3, 4, 5, 6, 7], [0, 1, 2, 3, 4, 5, 6, 7], [0, 1, 2, 3, 4, 5, 6, 7], [0, 1, 2, 3, 4, 5, 6, 7]] >>> from urllib2 import urlopen >>> f=urlopen("http://blake.bcm.edu/dl/test.html") >>> x=f.read() >>> print x My Page

Hi Everyone

This is really just some test text to demonstrate how HTML works. I can do interesting things like italicize or make text bold, or even both together. ta da >>> f=urlopen("http://www.yahoo.com") >>> x=f.read() >>> f.close() >>> print x Yahoo

Upgrade to the new Firefox »
  • Home
  • Mail
  • Answers
  • Groups
  • Flickr
  • Tumblr
  • Games
  • Live
  • Screen
  • Mobile
  • More
    • Celebrity
    • Movies
    • Music
    • TV
    • Health
    • Style
    • Beauty
    • Food
    • Tech
    • Shopping
    • Travel
    • Autos
    • Homes

Yahoo

Yahoo Search
 
Open Search Assist

Friday, January 23, 2015

  • My Yahoo
  • Sign In
     
    Yahoo New here? Sign Up
  • Mail

Trending

  1. 1Tiffani Thiessen
  2. 2Adriana Lima
  3. 3Olivia Munn
  4. 4Nina Simone
  5. 5Paulina Gretzky
  6. 6Miss Lebanon
  7. 7Galaxy Note 4
  8. 8Doomsday Clock
  9. 9Brandi Glanville
  10. 10Charlotte McKinney
  • Mail
  • News
  • Sports
  • Finance
  • Weather
  • Autos
  • Homes
  • Dating
  • Shopping
  • Makers
  • Parenting
  • Health
  • Style
  • Beauty
  • Food
  • Movies
  • Travel
  • Tech
  • More Yahoo Sites
  • Yahoo en Español
  • Answers
  • Careers
  • Celebrity
  • Fantasy Baseball
  • Fantasy Football
  • Fantasy Sports
  • Flickr
  • Games
  • Groups
  • Horoscopes
  • Local
  • Maps
  • Messenger
  • Music
  • My Yahoo
  • Search
  • Small Business
  • TV
  • All Products »
Learn more about Yahoo
Make Yahoo your homepage
Get the App

An endless stream of personalized news

Get the App
  • Trending Now
    • 1 Tiffani Thiessen
    • 2 Adriana Lima
    • 3 Olivia Munn
    • 4 Nina Simone
    • 5 Paulina Gretzky
    • 6 Miss Lebanon
    • 7 Galaxy Note 4
    • 8 Doomsday Clock
    • 9 Brandi Glanville
    • 10 Charlotte McKinney
Live concertPapa Roach » 8:55 PM
 

Sign in to save your preference.

Yahoo

Only on Yahoo

  1. Tom Brady's most interesting revelation Dan Wetzel, National Columnist, Yahoo Sports
  2. Windows 10 fixes Microsoft's big mistake David Pogue, Editor in Chief, Yahoo Tech
  3. Get the most out of mascara Bobbi Brown, Editor in Chief, Yahoo Beauty

Top Stories

  1. 1 U.S. pulls more staff from Yemen embassy amid deepening crisis
  2. 2 New Saudi king seeks to reassure on succession and policy
  3. 3 Putin blames Ukraine's 'criminal orders' for new fighting
  4. 4 Northeast preps as 1st significant winter storm approaches
  5. 5 A mother pleads as Japan hostage deadline passes
Delete

Weather

Houston
Change location

  • ‎43 °F | °C Light Rain

    ‎45°F High ‎37°F Low
  • Today ‎41 °F | °C

    ‎45°F High ‎37°F Low
  • Tomorrow ‎51 °F | °C

    ‎61°F High ‎41°F Low
  • Sunday ‎55.5 °F | °C

    ‎66°F High ‎45°F Low
Delete

Quotes Yahoo Finance

Markets

S&P 500
2,058.62
-0.22%
NASDAQ Composite
4,755.53
0.11%
Dow Jones Indust…
17,772.08
-0.24%

My Portfolio

Sign in to view your portfolios

Yahoo
SettingsDelete

Scores Yahoo Sports

Live

Visit Yahoo Sports for the latest scores and news.

Results

NBA

  • Bkn 84 - LAC 123
  • Final, 1/22

NBA

  • Bos 90 - Por 89
  • Final, 1/22

NHL

  • LA 2 - SJ 4
  • Final, 1/21

NHL

  • Cgy 3 - Anh 6
  • Final, 1/21

Coming Up

NBA

  • Tor @ Phi
  • 1/23 6:00 PM CT

NBA

  • Orl @ NY
  • 1/23 6:30 PM CT

NFL

  • IRV @ CRT
  • 1/25 7:00 PM CT

NHL

  • TTS @ TFS
  • 1/25 4:00 PM CT

My Teams

Sign in to view your favorite teams

Yahoo
Delete

Flickr

See more popular photos on Explore

Delete

Featured Videos Yahoo Screen

  • Catch up on 'Community' season 1
  • Star: 'Superslim' photo is clearly not fake
  • 'Voice' contestant's stirring music video
  • Man cashes in 65 years of saved pennies
Delete

Recommended Games

  • KingsRoad
  • Big Spin Bingo
  • Bingo USA
More Games »
Delete

Horoscopes Yahoo Celebrity

  • Aquarius

    1/20-2/18

    Indulging in fantasies today motivates you to reach beyond your comfort zone, but you might set your goals so high that you won't be able to attain them. It is healthy to acknowledge that your dreams are so fantastic that reality doesn't even have a chance to live up to them. Nevertheless, you can outmaneuver negativity now by graciously accepting what happens, even if it doesn't match your wildest expectations. Realistically assessing your current resources is the first step to achieving your ambitions. Get Your Complete Cosmic Profile

    • More
    • Not your sign?
Delete

Comics

  • 9 Chickweed Lane
  • B.C.
  • Dilbert
  • Garfield
  • Luann
  • Wizard of Id
  • Non Sequitur
See more
Delete
  • About Yahoo
  • Terms
  • Privacy
  • Advertise
  • About our Ads
  • Careers
  • Help
  • Feedback
Australia's Samantha Stosur plays a shot to Lucie Safarova of the Czech Republic. (Rick Rycroft/AP)

Fans wowed by tennis player's physique

A photo of Samantha Stosur's amazingly sculpted biceps at the Australian Open blows up on social media.  Parody account on Twitter »

More stories

  1. Tennis player's muscles Passenger's epic meltdown Don't say this to contractors Star's tantrum at NBA game Trick to a great salad
1 of 100
Previous set of stories Next set of stories
  • All Stories
  • News
  • Local
  • Entertainment
  • Sports
More
  • Business
  • Lifestyles
  • Technology
  • Science

You Might Like

    • 'Six Pack' Mom Reacts to Uproar Over Her Abs-Baring Photo

      When Abby Pell posted a photo on Instagram showing her slim belly and toned, defined abs, she never expected the uproar that would erupt. Kang, too, said she wanted to encourage other women.

      Good Morning America
      • Arts & Entertainment
    • NASA’s Curiosity Rover Photo Shows Human ‘Non-Terrestrial Officer’ Performing Maintenance On Mars

      According to an unnamed researcher who contacted UFO Sightings Daily’s Scot Warring, the NASA image shown below could be evidence backing McKinnon’s story. The U.S. government accused him of hacking into nearly 100 military and NASA computer networks between February 2001 and March 2002, and…

      The Inquisitr
      • Science, Social Science, & Humanities
      • NASA
    • Gwyneth Paltrow Admits to Joining Mile-High Club

      "Never Have I Ever" is when someone spits out random questions and people give some sort of sign one way or the other to say if they have done that act. On the "Ellen DeGeneres Show," Johnny Depp, Gwyneth Paltrow and Paul Bettany used actual signs -- saying "I Have" or they hadn't -- while…

      Good Morning America23 mins ago
      • Celebrities
      • Gwyneth Paltrow
      • Ellen DeGeneres
    • What Do They Own?: Five Mansions Owned by a Man Who Wants You to Live With Less

      Welcome to What Do They Own?, a new Curbed series where we take someone making headlines and try to figure out how much of the world they own, and by extension, how far they've gone to insulate themselves from the...

      Curbed
      • Celebrities
      • Jeff Greene
    • IRS Announces E-File Opens on Jan 20th

      You can file your simple Federal & State taxes for $0 at TurboTax with zero hidden costs. You'll get your max refund, guaranteed & taxes done right!

      AdChoicesTurboTaxSponsored
      • Oklahoma's hope for cashing in on heritage becomes a debacle

        OKLAHOMA CITY (AP) — Like many states, Oklahoma wants to be a tourist destination. And leaders here believe they have an ideal attraction: Oklahoma's heritage as the U.S. Indian Territory in the 1800s and as home to 39 tribes.

        Associated Press
        • Politics
        • Society
        • Legislature
        • Oklahoma
        • Oklahoma City
      • Why Are People Freaking Out About This Willow Smith Pic?

        Willow Smith, no stranger to age-based concern trolling, is finding herself at the center of another controversy. It's due to the photo you see here, which depicts the 14 year-old wearing a vintage Jean Paul Gaultier T-shirt. The pic lives on V Files' Instagram (the tee in question was a part of…

        Refinery29
        • Celebrities
        • Arts & Entertainment
      • Play Video

        'American Sniper' Controversy: Kevin Costner Weighs In

        Kevin Costner shares his thoughts on the controversy surrounding "American Sniper." Why does he say "coward" is the last thing you would call Chris Kyle?

        Access Hollywood Videos
        • Kevin Costner
      • Ex-players react: Brady's cluelessness 'unbelievable'

        For more than a decade, Tom Brady has established himself as one of the greatest quarterbacks of all-time, one of the sport’s most popular and respected players. On Wednesday, Brady may have jeopardized his credibility for good. Like Patriots coach Bill Belichick, Brady denied having anything to do…

        New York Post
        • Football
        • Sports & Recreation
        • Bill Belichick
      • Word Of Caution On 'Oldest Gospel Found In A Mummy Mask'

        (CNN)Media outlets have been abuzz this week with the news that the oldest fragment of a New Testament gospel -- and thus the earliest witness of Jesus' life and ministry -- had been discovered hidden inside an Egyptian mummy mask and was going to be published.The announcement of the papyrus'…

        Huffington Post
        • Books
      • Cops: Twins, 9, left mostly alone for months, parents abroad

        MANCHESTER, N.H. (AP) — Twin 9-year-old boys were left mostly alone in their New Hampshire apartment for four months after their parents took three siblings to Nigeria and left an uncle to care for them, authorities said Thursday.

        Associated Press
        • Parenting
        • Relationships
      • 2015 Obamacare Plans - Limited Time Only!

        See plans from BCBS, Aetna, Cigna and more before you apply. Call 855-506-1261 for information. Get covered & avoid tax penalties!

        AdChoicesGoHealthSponsored
        • Kristin Cavallari: ''I Can Look Really Skinny, and I Don't Like That''

          E! Online
          Dahicleal@daycleal Reply Retweet Favorite

          RT @ENews: Kristin Cavallari Is Trying to Add Muscle to Her Tiny Frame: ''I Can Look Really Skinny, and I Don't Like That'' http://t.co/btZ…

          16 hrs ago
        • Philae is still lost on a comet. The Rosetta probe might go search for it.

          Nearly three months after the Philae probe's historic landing on a comet, European Space Agency scientists still don't know where it is. Now Nature reports that ESA is considering sending Rosetta — the probe that's been orbiting the comet 67P/C-G — on a special mission to find Philae next month.…

          Vox.com30 mins ago
          • Science, Social Science, & Humanities
          • Comet
        • McDonald’s Restaurant Owners Want to Banish These Menu Items

          If McDonald's franchisees have their way, some coffees, wraps, and Happy Meal options will disappear from menus.

          Money
          • Business
        • A promising life in France given up for jihad

          He had a promising graphic designer job, plans to be a wedding videographer and was a star sportsman in his French town. So how did Youssoup Nassoulkhanov end up in an Islamic State group video praising the Paris attacks? The streets of Schiltigheim in the Alsace region of eastern France are not a…

          AFP
          • Society
          • Syria
          • France
          • Paris
        • Post Mortem: Mom Cast 'Sad,' But 'Proud' and 'In Awe' of Latest Twist

          CBS’ Mom, which in its first one-and-a-half seasons has tackled alcoholism, cancer, gambling and teen pregnancy, added another serious topic to its repertoire this Thursday night, with the sudden death of a major character. The episode “Three Smiles And An Unpainted Ceiling” opened (too?) happily…

          TVLine.com
          • Celebrities
          • Arts & Entertainment
          • Allison Janney
        • Navy Commander at Guantanamo Base Fired Amid Alleged Affair, Suspicious Death

          Captain John Nettleton was relieved of command on Wednesday by Rear Adm. Mary M. Jackson, commander of Navy Region Southeast, “due to loss of confidence in Nettleton's ability to command,” according to a statement from the Navy. The statement declined to give additional details because of an…

          Good Morning America
          • Military
          • Society
        • Johnny Depp's 'MORTDECAI' Now Playing In Theaters

          Meet Charlie Mortdecai - equal parts debonair art dealer, scampish rogue, and moustachioed connoisseur. Find showtimes and get tickets today!

          AdChoicesLionsgateSponsored
          • Surprise! Magnets used to plant drugs under cars from Mexico

            SAN DIEGO (AP) — Drug smugglers are turning people who are granted "trusted travelers" status by the U.S. government into unwitting mules by placing containers with powerful magnets under their cars in Mexico and then recovering the illegal cargo far from the view of border authorities in the…

            Associated Press
            • Crime & Justice
            • San Diego
            • Mexico
          • Senior Bowl NFL Draft stock report: Who helped themselves in Mobile?

            As our coverage has noted previously, LSU offensive tackle La'el Collins and Washington defensive tackle Danny Shelton played as expected. In Mobile, he was asked to be immobile.

            SB Nation
            • Football
            • Sports & Recreation
            • Senior Bowl
            • National Football League draft
          • TurboTax Users Get an Apology and $25 Each

            Intuit was hit with a barrage of complaints after many users of the company's software discovered they had to buy a more-expensive version this year.

            The Wall Street Journal
            • Technology & Electronics
            • Software
            • TurboTax
            • Intuit
          • Play Video

            Chilling New Revelations From the Black Boxes on Board the AirAsia Flight

            Also, a new effort to develop technology to find missing airplanes.

            ABC News Videos
            • Commercial Vehicles
            • Flight recorder
            • AirAsia
          >>> odd% odd% ls 111_IP3R.mrc cd proc3d.raddist 1f88.ent chimera_movie.mov projs.hdf 2008_02_19_irina_collab.pdf chimera_movie.mp4 r_07_04.hdf 2VZ8.pdb chimera_movie2.mp4 r_09_04.hdf AnimeStudio classes.png r_10_04.hdf Applications ctf.fg1d.ps r_16_02.hdf CV_NIH_2008_02_19.pdf ctfparm.txt r_16_02.jpg DVDTemp d r_16_02f.hdf Desktop data r_35_02.hdf Documents data.csv refine.log Downloads data.txt result.txt Dropbox db s2 Dropbox (NCMI) dot.hdf scripps.pdf Dropbox (Personal) dot2.hdf session9.txt EMAN dynamics.ppt share EMAN2 eclipse snapshot1.png EMAN2.odp efs std.ics EMAN2.ppt emdb test EMAN2DB error.txt test.html Image Data Converter SR filtertool_default.txt test.mov ImageMagick-6.4.0 good_top_avg.hdf test.py Java.disable good_top_avg_r.gif test.txt Library good_top_avg_r.hdf test1.mp4 Manga_Studio_SampleData groel-c7.mrc test2.py Movies groel.12A.mrc test2.pyc Music groel.12A.pub.mrc test2.txt Pictures groel.published.12.mrc testdb PoserDebut groel.xray.12A.mrc threed_03.hdf Public id tmp QtSDK installed tomotrackbox.py Reference2.pdf ip3r-binding.py tst.hdf Sites lib tst.txt StrucFact.sm mail video.mpg UCLA.pdf me.jpg wp VirtualBox VMs me.psd x a.pdb mmcpn.py x.c aacmsched.pdf mmcpn.side.gif x.pkl aacmsched2.pdf mmcpn.top.gif x.txt abstract.doc p1.txt y.py bin p2.txt z.html bioshocksave.tgz pdb z.py burn pro cam.html proc3d.filt odd% python Python 2.7.6 (default, Sep 9 2014, 15:04:36) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> os.stat("y.py") posix.stat_result(st_mode=33261, st_ino=1534413, st_dev=16777220L, st_nlink=1, st_uid=501, st_gid=20, st_size=77, st_atime=1409364279, st_mtime=1389369517, st_ctime=1409364279) >>> os.stat("x.py") Traceback (most recent call last): File "", line 1, in OSError: [Errno 2] No such file or directory: 'x.py' >>> os.path.exists("y.py") True >>> os.path.exists("x.py") False >>> import Bio >>> odd%